File tree Expand file tree Collapse file tree 1 file changed +15
-14
lines changed
Expand file tree Collapse file tree 1 file changed +15
-14
lines changed Original file line number Diff line number Diff line change @@ -140,18 +140,6 @@ jobs:
140140 - name : Run current Bencher CLI GitHub Action
141141 run : bencher run --project bencher --token ${{ secrets.BENCHER_API_TOKEN }} --dry-run "bencher mock"
142142
143- # Governance
144- cargo_deny :
145- name : Cargo Deny
146- runs-on : ubuntu-22.04
147- steps :
148- - uses : actions/checkout@v4
149- - uses : EmbarkStudios/cargo-deny-action@v2
150- with :
151- log-level : warn
152- command : check
153- arguments : --all-features
154-
155143 # Pretty Rust
156144 cargo_fmt :
157145 name : Cargo Format
@@ -408,6 +396,19 @@ jobs:
408396 mold-version : ${{ env.MOLD_VERSION }}
409397 - run : cargo audit
410398
399+ # Cargo Deny
400+ cargo_deny :
401+ name : Cargo Deny
402+ runs-on : ubuntu-22.04
403+ continue-on-error : true
404+ steps :
405+ - uses : actions/checkout@v4
406+ - uses : EmbarkStudios/cargo-deny-action@v2
407+ with :
408+ log-level : warn
409+ command : check
410+ arguments : --all-features
411+
411412 # Cargo Unused Deps
412413 cargo_udeps :
413414 name : Cargo Unused Deps
@@ -851,14 +852,13 @@ jobs:
851852 continue-on-error : true
852853 timeout-minutes : 5
853854 needs :
854- # Governance
855- - cargo_deny
856855 # Lint
857856 - cargo_fmt
858857 - cargo_clippy
859858 - npx_biome_format
860859 - npx_biome_lint
861860 - check_generated
861+ - cargo_deny
862862 # Test
863863 - cargo_test
864864 - api_smoke_test
@@ -1012,6 +1012,7 @@ jobs:
10121012 - npx_biome_format
10131013 - npx_biome_lint
10141014 - check_generated
1015+ - cargo_deny
10151016 # Test
10161017 - cargo_test
10171018 - api_smoke_test
You can’t perform that action at this time.
0 commit comments