Update pyproject.toml #58
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Format, lint, and test | |
on: | |
push | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.9 | |
cache: 'pip' | |
cache-dependency-path: 'pyproject.toml' | |
- name: Install package and lint tools | |
run: pip install ".[dev]" | |
- name: Run tests | |
run: pytest -vvv | |
- name: Run lint | |
run: bash scripts/lint.sh |