Skip to content

Commit

Permalink
Fix format check command
Browse files Browse the repository at this point in the history
  • Loading branch information
freddyheppell committed Jun 13, 2024
1 parent 504e4d6 commit 34a7f58
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ on:
jobs:
lint:
runs-on: ubuntu-latest
# Set this at job level so it's marked as failed if any of the steps fail
continue-on-error: true
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
Expand All @@ -24,6 +26,6 @@ jobs:
python -m pip install --upgrade pip
pip install -e ".[test]"
- name: Ruff Format Check
run: ruff format --check --output-format=github .
run: ruff format --check .
- name: Ruff Lint Check
run: ruff check --output-format=github .

0 comments on commit 34a7f58

Please sign in to comment.