Summer25 Week 32 #1255
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: CI | |
| # Enable Buildkit and let compose use it to speed up image building | |
| env: | |
| DOCKER_BUILDKIT: 1 | |
| COMPOSE_DOCKER_CLI_BUILD: 1 | |
| on: | |
| pull_request: | |
| branches: ["main", "summer25", "summer25-*"] | |
| paths-ignore: ["docs/**"] | |
| push: | |
| branches: ["main", "summer25", "summer25-*"] | |
| paths-ignore: ["docs/**"] | |
| concurrency: | |
| group: ${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| linter: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code Repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.11" | |
| # Consider using pre-commit.ci for open source project | |
| - name: Run pre-commit | |
| uses: pre-commit/action@v3.0.0 | |
| pytest: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 20 | |
| steps: | |
| - name: Checkout Code Repository | |
| uses: actions/checkout@v4 | |
| - name: Setup secrets | |
| run: cp .env.example .env | |
| - name: Build the Stack | |
| run: docker compose --profile dev build | |
| - name: Check if migrations are up to date | |
| run: docker compose --profile dev run --rm django-dev ./src/manage.py makemigrations --check | |
| - name: Run DB Migrations | |
| run: docker compose --profile dev run --rm django-dev ./src/manage.py migrate | |
| - name: Run mypy | |
| run: docker compose --profile dev run --rm django-dev uv run mypy . | |
| # - name: Run Django Tests | |
| # run: docker compose --profile dev run django-dev pytest | |
| - name: Tear down the Stack | |
| run: docker compose --profile dev down |