mirror of
https://github.com/denisidoro/navi
synced 2024-11-24 12:33:05 +00:00
Temporarily remove lint checks (#730)
This commit is contained in:
parent
281950c1b9
commit
ff638495d1
1 changed files with 26 additions and 26 deletions
52
.github/workflows/ci.yml
vendored
52
.github/workflows/ci.yml
vendored
|
@ -48,7 +48,7 @@ jobs:
|
|||
mkdir /tmp/cheats-dir
|
||||
touch /tmp/config-file
|
||||
|
||||
- name: Run cargo test (with compiled-in paths)
|
||||
- name: Run cargo test
|
||||
uses: actions-rs/cargo@v1
|
||||
continue-on-error: false
|
||||
env:
|
||||
|
@ -89,31 +89,31 @@ jobs:
|
|||
- name: Run bash tests
|
||||
run: ./tests/run
|
||||
|
||||
lints:
|
||||
name: Lints
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout sources
|
||||
uses: actions/checkout@v2
|
||||
# lints:
|
||||
# name: Lints
|
||||
# runs-on: ubuntu-latest
|
||||
# steps:
|
||||
# - name: Checkout sources
|
||||
# uses: actions/checkout@v2
|
||||
|
||||
- name: Install stable toolchain
|
||||
uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
profile: minimal
|
||||
toolchain: stable
|
||||
override: true
|
||||
components: rustfmt, clippy
|
||||
# - name: Install stable toolchain
|
||||
# uses: actions-rs/toolchain@v1
|
||||
# with:
|
||||
# profile: minimal
|
||||
# toolchain: stable
|
||||
# override: true
|
||||
# components: rustfmt, clippy
|
||||
|
||||
- name: Run cargo fmt
|
||||
uses: actions-rs/cargo@v1
|
||||
continue-on-error: false
|
||||
with:
|
||||
command: fmt
|
||||
args: --all -- --check
|
||||
# - name: Run cargo fmt
|
||||
# uses: actions-rs/cargo@v1
|
||||
# continue-on-error: false
|
||||
# with:
|
||||
# command: fmt
|
||||
# args: --all -- --check
|
||||
|
||||
- name: Run cargo clippy
|
||||
uses: actions-rs/cargo@v1
|
||||
continue-on-error: false
|
||||
with:
|
||||
command: clippy
|
||||
args: -- -D warnings
|
||||
# - name: Run cargo clippy
|
||||
# uses: actions-rs/cargo@v1
|
||||
# continue-on-error: false
|
||||
# with:
|
||||
# command: clippy
|
||||
# args: -- -D warnings
|
||||
|
|
Loading…
Reference in a new issue