Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
mxve committed Oct 4, 2024
1 parent 7067f03 commit 82d4c4c
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
os: windows-latest
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
continue-on-error: true
name: Check
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -24,7 +25,6 @@ jobs:

- name: Run cargo check
uses: clechasseur/rs-cargo@v2
continue-on-error: true
with:
command: check

Expand All @@ -36,6 +36,7 @@ jobs:
os: windows-latest
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
continue-on-error: true
name: Test Suite
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -49,7 +50,6 @@ jobs:

- name: Run cargo test
uses: clechasseur/rs-cargo@v2
continue-on-error: true
with:
command: test

Expand All @@ -61,6 +61,7 @@ jobs:
os: windows-latest
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
continue-on-error: true
name: Lints
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -75,14 +76,12 @@ jobs:

- name: Run cargo fmt
uses: clechasseur/rs-cargo@v2
continue-on-error: true
with:
command: fmt
args: --all -- --check

- name: Run cargo clippy
uses: clechasseur/rs-cargo@v2
continue-on-error: true
with:
command: clippy
args: -- -D warnings

0 comments on commit 82d4c4c

Please sign in to comment.