diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dc8ac71922..d07f642ab5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -108,13 +108,19 @@ jobs: retention-days: 30 test: + name: "Test (Python: ${{ matrix.python-version }}, DB: ${{ matrix.db-backend }})" needs: build-wheel runs-on: ubuntu-24.04 + timeout-minutes: 45 strategy: matrix: python-version: ['3.8', '3.12'] db-backend: [mysql, postgres] - name: "Test (Python: ${{ matrix.python-version }}, DB: ${{ matrix.db-backend }})" + frontend: [false] + include: + - python-version: '3.12' + - db-backend: postgres + - frontend: true steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }}