Update from RegioHelden's modulesync-config-django #720
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: Test | |
| on: | |
| # code pushed to pull request branch | |
| push: | |
| branches-ignore: | |
| - main | |
| # when draft state is removed (needed as automatically created PRs are not triggering this action) | |
| pull_request: | |
| types: [ready_for_review] | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: | |
| - "3.11" | |
| - "3.12" | |
| - "3.13" | |
| - "3.14" | |
| django: | |
| - "4.2" | |
| - "5.2" | |
| - "6.0" | |
| database: | |
| - postgres | |
| exclude: | |
| - python-version: "3.13" | |
| django: "4.2" | |
| - python-version: "3.14" | |
| django: "4.2" | |
| - python-version: "3.11" | |
| django: "6.0" | |
| services: | |
| # postgres service | |
| postgres: | |
| image: postgres:18-alpine | |
| env: | |
| POSTGRES_USER: app | |
| POSTGRES_PASSWORD: app | |
| POSTGRES_DB: app | |
| ports: | |
| - 5432:5432 | |
| options: >- | |
| --health-cmd="pg_isready" | |
| --health-interval=10s | |
| --health-timeout=5s | |
| --health-retries=5 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install the latest version of uv | |
| uses: astral-sh/setup-uv@v7 | |
| - name: Install requirements | |
| run: uv pip install --system -r requirements-ci.txt | |
| - name: Install Django ${{ matrix.django }} | |
| run: uv pip install --system "Django~=${{ matrix.django }}" | |
| - name: Install package | |
| run: uv pip install --system -e . | |
| - name: Run tests | |
| run: python manage.py test |