Skip to content

Commit

Permalink
chore: cargo-denyを復活させ、mainブランチ上で動かす (#855)
Browse files Browse the repository at this point in the history
表題の通り。

`on.pull_request`を消したので、マージ後にCIが落ちる可能性が出てくる。た
だそれに関しては、一番ライブラリを出し入れするであろう @qryxip が手元で
`cargo deny check`することでなんとかする。

「 @qryxip とRenovateからのPR」にだけ反応するようにするという手もある
が、今後問題が起きてから考えることにする。

Refs: #333
  • Loading branch information
qryxip authored Oct 13, 2024
1 parent f61890f commit b82f7dc
Show file tree
Hide file tree
Showing 2 changed files with 121 additions and 140 deletions.
15 changes: 4 additions & 11 deletions .github/workflows/cargo-deny.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
name: cargo-deny
on:
push:
pull_request:
defaults:
run:
shell: bash
branches:
- main
jobs:
cargo-deny:
runs-on: ubuntu-20.04
Expand All @@ -13,11 +11,6 @@ jobs:
- name: Install cargo-binstall
uses: taiki-e/install-action@cargo-binstall
- name: Install cargo-deny
run: cargo binstall cargo-deny@^0.14 --no-confirm --log-level debug
run: cargo binstall cargo-deny@^0.16 --no-confirm --log-level debug
- name: cargo-deny
run: |
if ${{ !!github.event.release }}; then
cargo deny --all-features check
else
cargo deny --all-features check -W denied
fi
run: cargo deny --all-features check
Loading

0 comments on commit b82f7dc

Please sign in to comment.