Skip to content
This repository was archived by the owner on Mar 4, 2024. It is now read-only.

Commit c370d45

Browse files
Only run clippy on stable
1 parent 1dec620 commit c370d45

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -70,15 +70,11 @@ jobs:
7070
# not nightly
7171
# clippy
7272
- run: rustup component add clippy
73-
if: matrix.rust == 'beta' || matrix.rust == 'stable'
73+
if: matrix.rust == 'stable'
7474
- working-directory: ${{ matrix.conf.name }}
7575
name: clippy ${{ matrix.conf.name }}
7676
run: cargo clippy --all-targets -- -D warnings
7777
if: matrix.rust == 'stable'
78-
- working-directory: ${{ matrix.conf.name }}
79-
name: clippy ${{ matrix.conf.name }}
80-
run: cargo clippy --all-targets
81-
if: matrix.rust == 'beta'
8278
# tests
8379
- name: tests (rust ${{ matrix.rust }})
8480
run: xvfb-run --auto-servernum cargo test --manifest-path ${{ matrix.conf.name }}/Cargo.toml --features "${{ matrix.conf.features }}"

0 commit comments

Comments
 (0)