fix: rename phase 01 from 01-null to data-and-constraints-foundations #2
This file contains hidden or 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
| # Tests + lint; checks out submodules so parity copies match recorded SHAs. | |
| name: CI | |
| on: | |
| push: | |
| branches: [main, master] | |
| pull_request: | |
| branches: [main, master] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| cache: pip | |
| - name: Install package + dev deps | |
| run: pip install -e ".[dev]" | |
| - name: Lint | |
| run: make lint | |
| - name: Tests | |
| run: pytest tests/ -q |