Skip to content

Commit

Permalink
ci: remove the quaint clippy jobs (#4185)
Browse files Browse the repository at this point in the history
There is already a workspace-global clippy, so these are redundant.

The second change is in the quaint test job. Since it defines a working
directory override, the action wasn't taking into account our lockfile.
  • Loading branch information
tomhoule committed Aug 30, 2023
1 parent a3abd90 commit 6405302
Showing 1 changed file with 2 additions and 23 deletions.
25 changes: 2 additions & 23 deletions .github/workflows/quaint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,6 @@ on:
- 'quaint/**'

jobs:
clippy:
runs-on: ubuntu-latest
env:
RUSTFLAGS: "-Dwarnings"
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy

- name: Install dependencies
run: sudo apt install -y openssl libkrb5-dev
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --features=all --manifest-path quaint/Cargo.toml
tests:
runs-on: ubuntu-latest

Expand Down Expand Up @@ -52,11 +36,7 @@ jobs:

steps:
- uses: actions/checkout@v3

- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- uses: dtolnay/rust-toolchain@stable

- uses: actions/cache@v3
with:
Expand All @@ -76,5 +56,4 @@ jobs:
time: 20s

- name: Run tests
run: cargo test ${{ matrix.features }}
working-directory: ./quaint
run: cargo test -p quaint ${{ matrix.features }}

0 comments on commit 6405302

Please sign in to comment.