Skip to content

Commit

Permalink
Different method for allowing failure
Browse files Browse the repository at this point in the history
  • Loading branch information
freddyheppell committed Jun 13, 2024
1 parent aa40a02 commit 5bae749
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ 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 @@ -30,4 +28,6 @@ jobs:
- name: Ruff Format Check
run: ruff format --check .
- name: Ruff Lint Check
run: ruff check --output-format=github .
run: ruff check --output-format=github .
# Still run if format check fails
if: always()

0 comments on commit 5bae749

Please sign in to comment.