Bump dependencies #231
Workflow file for this run
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
| name: Tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| # Workaround for https://github.com/jazzband/pip-tools/issues/2131 | |
| - name: Downgrade pip | |
| run: pip install --upgrade pip==24.2 | |
| - name: Install dependencies | |
| run: pip install -r requirements.txt -r requirements-dev.txt | |
| - name: Validate dependencies | |
| uses: PeterJCLaw/validate-generated-files@v1 | |
| with: | |
| command: ./script/compile-requirements.sh | |
| files: requirements*.txt | |
| - name: Static type checking | |
| run: make type | |
| - name: Formatting | |
| run: make format-check | |
| - name: Lint | |
| run: make lint | |
| - name: Unit tests | |
| run: make test | |
| - name: Django Static Checks | |
| run: make check |