File tree Expand file tree Collapse file tree 1 file changed +18
-1
lines changed
Expand file tree Collapse file tree 1 file changed +18
-1
lines changed Original file line number Diff line number Diff line change 4141
4242 - run : cargo test --all
4343
44+ clippy :
45+ name : Clippy
46+ runs-on : ubuntu-24.04
47+ steps :
48+ - name : Checkout repository
49+ uses : actions/checkout@v4
50+
51+ - name : Update rust
52+ run : |
53+ # use beta since it gives us near-latest fixes but isn't as volatile as nightly
54+ rustup default beta
55+ rustup component add clippy
56+ rustup update --no-self-update
57+
58+ - run : cargo clippy --all
59+
4460 msrv :
4561 name : Check building with the MSRV
4662 runs-on : ubuntu-24.04
6985
7086 success :
7187 needs :
72- - test
88+ - clippy
7389 - msrv
7490 - rustfmt
91+ - test
7592 runs-on : ubuntu-latest
7693 # GitHub branch protection is exceedingly silly and treats "jobs skipped because a dependency
7794 # failed" as success. So we have to do some contortions to ensure the job fails if any of its
You can’t perform that action at this time.
0 commit comments