ci: disable clippy
This commit is contained in:
parent
21dd343320
commit
8bdae3ba8d
1 changed files with 5 additions and 6 deletions
11
.github/workflows/ci.yml
vendored
11
.github/workflows/ci.yml
vendored
|
@ -8,7 +8,7 @@ env:
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
name: Lint & test
|
name: CI
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: Set up cargo cache
|
- name: Set up cargo cache
|
||||||
|
@ -25,10 +25,9 @@ jobs:
|
||||||
restore-keys: ${{ runner.os }}-cargo-
|
restore-keys: ${{ runner.os }}-cargo-
|
||||||
- name: cargo test
|
- name: cargo test
|
||||||
run: cargo test
|
run: cargo test
|
||||||
|
|
||||||
# uncomment to enable clippy linter
|
# uncomment to enable clippy linter
|
||||||
- name: cargo clippy
|
# - name: cargo clippy
|
||||||
run: cargo clippy -- -D warnings
|
# run: cargo clippy -- -D warnings
|
||||||
# uncomment to enable format linter
|
# uncomment to enable format linter
|
||||||
- name: cargo fmt
|
# - name: cargo fmt
|
||||||
run: cargo fmt --check
|
# run: cargo fmt --check
|
||||||
|
|
Loading…
Add table
Reference in a new issue