diff --git a/.github/workflows/qc_checks.yaml b/.github/workflows/qc_checks.yaml index e45c922dcb..cc1fdbfbb1 100644 --- a/.github/workflows/qc_checks.yaml +++ b/.github/workflows/qc_checks.yaml @@ -14,7 +14,7 @@ on: env: python_version: 3.9 node_version: 16 - # Set the runner os in os_matrix.strategy.matrix.os + # The OS version must be set per job server_start_sleep: 60 @@ -28,14 +28,9 @@ env: INVENTREE_ADMIN_EMAIL: test@test.com jobs: - os_matrix: - strategy: - matrix: - os: [ubuntu-20.04] - pep_style: name: Python Style (PEP8) - runs-on: ${{ matrix.os }} + runs-on: ubuntu-20.04 steps: - name: Checkout code @@ -56,7 +51,7 @@ jobs: javascript: name: JS Template Files needs: pep_style - runs-on: ${{ matrix.os }} + runs-on: ubuntu-20.04 steps: - name: Checkout Code @@ -92,7 +87,7 @@ jobs: html: name: HTML Template Files needs: pep_style - runs-on: ${{ matrix.os }} + runs-on: ubuntu-20.04 steps: - name: Checkout Code @@ -123,7 +118,7 @@ jobs: pre-commit: name: pre-commit needs: pep_style - runs-on: ${{ matrix.os }} + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 - name: Set up Python ${{ env.python_version }} @@ -136,7 +131,7 @@ jobs: python: name: Test inventree-python needs: pre-commit - runs-on: ${{ matrix.os }} + runs-on: ubuntu-20.04 env: wrapper_name: inventree-python @@ -176,7 +171,7 @@ jobs: coverage: name: Tests + Coverage [SQLite] needs: ['javascript', 'html', 'pre-commit'] - runs-on: ${{ matrix.os }} + runs-on: ubuntu-20.04 env: INVENTREE_DB_NAME: ./inventree.sqlite @@ -222,7 +217,7 @@ jobs: postgres: name: Tests [PostgreSQL] needs: ['javascript', 'html', 'pre-commit'] - runs-on: ${{ matrix.os }} + runs-on: ubuntu-20.04 if: github.event_name == 'push' env: @@ -287,7 +282,7 @@ jobs: mysql: name: Tests [MySQL] needs: ['javascript', 'html', 'pre-commit'] - runs-on: ${{ matrix.os }} + runs-on: ubuntu-20.04 if: github.event_name == 'push' env: