Skip to content

Commit

Permalink
chore: Update style workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jsakv committed Jul 9, 2024
1 parent 85f2924 commit 93bc966
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ jobs:
virtualenvs-create: true
virtualenvs-in-project: true

- name: Install dependencies
run: poetry install

- name: Run Ruff linter
run: |
poetry run ruff --version
Expand All @@ -44,6 +47,9 @@ jobs:
virtualenvs-create: true
virtualenvs-in-project: true

- name: Install dependencies
run: poetry install

- name: Run Ruff formatter
run: |
poetry run ruff --version
Expand All @@ -65,7 +71,10 @@ jobs:
virtualenvs-create: true
virtualenvs-in-project: true

- name: Run Ruff formatter
- name: Install dependencies
run: poetry install

- name: Run mypy
run: |
poetry run mypy --version
poetry run mypy app pyrorisks

0 comments on commit 93bc966

Please sign in to comment.