Skip to content

chore: add .editorconfig, CODEOWNERS, dependabot.yml #9

chore: add .editorconfig, CODEOWNERS, dependabot.yml

chore: add .editorconfig, CODEOWNERS, dependabot.yml #9

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- run: pip install -e ".[dev]" || pip install -e .
- run: pip install pytest
- run: pytest