Skip to content

Commit

Permalink
remove clippy check
Browse files Browse the repository at this point in the history
  • Loading branch information
willemolding committed Apr 9, 2024
1 parent 59fbcdd commit 7665d29
Showing 1 changed file with 7 additions and 15 deletions.
22 changes: 7 additions & 15 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,27 +30,19 @@ jobs:
command: check
args: --all
lints:
name: clippy and fmt
name: fmt check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Checkout Source
uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
- name: Run sccache-cache
uses: mozilla-actions/sccache-action@v0.0.3
with:
token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions-rs/toolchain@v1
with:
profile: minimal
override: true
components: clippy,rustfmt
- name: Run cargo fmt
uses: actions-rs/cargo@v1
continue-on-error: false
with:
command: fmt
args: --all -- --check
- name: Setup protoc
uses: arduino/setup-protoc@v1.1.2
- uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D warnings
command: fmt
args: --all --check

0 comments on commit 7665d29

Please sign in to comment.