Education page amendments #1435
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: Pull request | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| permissions: | |
| contents: read | |
| jobs: | |
| check-migrations: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - name: Run tests | |
| uses: ./.github/actions/check-migrations | |
| test-python: | |
| runs-on: ubuntu-latest | |
| env: | |
| DJANGO_SETTINGS_MODULE: config.settings.test | |
| DATABASE_ENGINE: django.db.backends.postgresql | |
| DATABASE_NAME: postgres | |
| DATABASE_USER: postgres | |
| DATABASE_PASSWORD: postgres | |
| DATABASE_HOST: localhost | |
| DATABASE_PORT: 5432 | |
| services: | |
| postgres: | |
| image: postgres:16.0 | |
| env: | |
| POSTGRES_USER: ${{ env.DATABASE_USER }} | |
| POSTGRES_PASSWORD: ${{ env.DATABASE_PASSWORD }} | |
| POSTGRES_DB: ${{ env.DATABASE_NAME }} | |
| ports: | |
| - 5432:5432 | |
| options: --health-cmd pg_isready --health-interval 1s --health-timeout 3s --health-retries 10 | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - name: Run tests | |
| uses: ./.github/actions/python-tests | |
| with: | |
| codecov-token: ${{ secrets.CODECOV_TOKEN }} | |
| check-formatting: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - name: Run tests | |
| uses: ./.github/actions/check-formatting |