Skip to content

Commit

Permalink
Also run ruff format --check in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
bcbnz committed Jan 26, 2025
1 parent 5f0fa10 commit 3dc1547
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ jobs:
run-linters:
runs-on: ubuntu-latest

continue-on-error: true

steps:
- uses: actions/checkout@v4

Expand All @@ -23,5 +25,13 @@ jobs:
python-version: 3.x
architecture: x64

- name: Check with ruff
- name: Download ruff
uses: astral-sh/ruff-action@v3
with:
args: version

- name: Lint
run: ruff check

- name: Check formatting
run: ruff format --check

0 comments on commit 3dc1547

Please sign in to comment.