chore(main): release 2.2.3 (#112) #360
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: Python Checks and Unit Tests | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| lint-test: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| id-token: write | |
| contents: read | |
| strategy: | |
| max-parallel: 2 | |
| matrix: | |
| python-version: ["3.11", "3.12"] | |
| services: | |
| default-database: | |
| image: postgres:15.5-alpine | |
| env: | |
| POSTGRES_HOST_AUTH_METHOD: trust | |
| ports: ["6543:5432"] | |
| options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 | |
| task-processor-database: | |
| image: postgres:15.5-alpine | |
| env: | |
| POSTGRES_HOST_AUTH_METHOD: trust | |
| ports: ["6544:5432"] | |
| options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install Poetry | |
| run: pipx install poetry | |
| - name: Install Dependencies | |
| env: | |
| opts: --with dev | |
| run: make install-packages | |
| - name: Check for missing migrations | |
| env: | |
| opts: --no-input --dry-run --check | |
| run: make django-make-migrations | |
| - name: Check for new typing errors | |
| run: make typecheck | |
| - name: Run Tests | |
| env: | |
| DOTENV_OVERRIDE_FILE: .env-ci | |
| run: make test | |
| - name: Upload Coverage | |
| uses: codecov/codecov-action@v5 | |
| env: | |
| PYTHON: ${{ matrix.python-version }} | |
| with: | |
| use_oidc: true | |
| env_vars: PYTHON |