mirror of
https://github.com/gitui-org/gitui
synced 2026-05-23 00:48:35 +00:00
Check udeps (#1535)
This commit is contained in:
parent
bff1c33625
commit
7f5c6ceeef
1 changed files with 17 additions and 0 deletions
17
.github/workflows/ci.yml
vendored
17
.github/workflows/ci.yml
vendored
|
|
@ -190,6 +190,23 @@ jobs:
|
|||
run: |
|
||||
cargo deny check bans
|
||||
|
||||
udeps:
|
||||
name: udeps
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
- name: Install Rust
|
||||
uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: nightly
|
||||
override: true
|
||||
|
||||
- name: cargo-udeps
|
||||
run: |
|
||||
cargo install --locked cargo-udeps
|
||||
cargo +nightly udeps --all-targets
|
||||
|
||||
|
||||
sec:
|
||||
name: Security audit
|
||||
runs-on: ubuntu-latest
|
||||
|
|
|
|||
Loading…
Reference in a new issue