diff --git a/.github/workflows/test-runner.yml b/.github/workflows/test-runner.yml index 011f62a..ccc9574 100644 --- a/.github/workflows/test-runner.yml +++ b/.github/workflows/test-runner.yml @@ -11,24 +11,50 @@ on: - dev jobs: + pre-commit: + name: Run pre-commit checks + runs-on: ubuntu-latest - test: + steps: + - uses: actions/checkout@v3 + + - name: Set up Python 3.10 + uses: actions/setup-python@v4 + with: + python-version: "3.10" + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install '.[dev]' + + - name: Run pre-commit checks + uses: pre-commit/action@v3.5.0 + with: + extra_args: --all-files + env: + PRE_COMMIT_HOME: ~/.cache/pre-commit + test: + needs: pre-commit # This ensures tests run after pre-commit checks name: Execute tests runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: + - uses: actions/checkout@v3 - - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@main + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - - name: Run unit tests + - name: Install dependencies run: | + python -m pip install --upgrade pip pip install '.[dev]' - pytest -v + + - name: Run unit tests + run: pytest -v