Skip to content

Commit

Permalink
Make minor improvements in test pipeline (#182)
Browse files Browse the repository at this point in the history
- Remove python 3.9 from test matrix to reduce amount of requests during
testing
- Add github output format when linting with `ruff`
  • Loading branch information
vsakkas authored Sep 5, 2024
1 parent 07ff72a commit 1791eff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.10", "3.11"]

steps:
- name: Checkout code
Expand All @@ -38,7 +38,7 @@ jobs:
run: poetry install

- name: Run linter
run: poetry run ruff check sydney/
run: poetry run ruff --output-format=github sydney/

- name: Run type checker
run: poetry run mypy --ignore-missing-imports sydney/
Expand Down

0 comments on commit 1791eff

Please sign in to comment.