mirror of
https://github.com/gitui-org/gitui
synced 2026-05-24 09:28:21 +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: |
|
run: |
|
||||||
cargo deny check bans
|
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:
|
sec:
|
||||||
name: Security audit
|
name: Security audit
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue