Skip to content

Commit

Permalink
add pre-commit to test runner
Browse files Browse the repository at this point in the history
  • Loading branch information
jonhealy1 committed Oct 9, 2024
1 parent e1e4930 commit f423276
Showing 1 changed file with 32 additions and 6 deletions.
38 changes: 32 additions & 6 deletions .github/workflows/test-runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]
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

0 comments on commit f423276

Please sign in to comment.