diff options
author | Denis Isidoro <denisidoro@users.noreply.github.com> | 2022-05-15 12:22:48 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-15 12:22:48 -0300 |
commit | ff638495d1c5803d8889042d13b15403d1573f8b (patch) | |
tree | 4baaeb5d7b161a1cadbaf677ebc57e1ebcbcd2c9 | |
parent | 281950c1b9ca8dfad28323283f29f4fd2279c113 (diff) |
Temporarily remove lint checks (#730)v2.20.0
-rw-r--r-- | .github/workflows/ci.yml | 58 |
1 files changed, 29 insertions, 29 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 630d42f..31ff4b9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 - - - 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 clippy - uses: actions-rs/cargo@v1 - continue-on-error: false - with: - command: clippy - args: -- -D warnings + # 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: 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 |