Skip to content

Commit

Permalink
Try to fix lint workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
thejohnfreeman committed Feb 5, 2024
1 parent 814aa77 commit 2e3478b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ concurrency:
cancel-in-progress: true

jobs:
test:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: pipx install poetry
- uses: actions/setup-python@v5
with:
python-version: 3.11
- run: poetry install --only lint
- run: poetry install --only lint,test
- run: |
poetry run mypy src tests
poetry run pylint src tests
Expand Down

0 comments on commit 2e3478b

Please sign in to comment.