mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-13 05:38:46 +00:00
cicd: add cargo audit
This commit is contained in:
parent
d3040c0deb
commit
23907b5d4c
1 changed files with 10 additions and 0 deletions
10
.github/workflows/ci.yaml
vendored
10
.github/workflows/ci.yaml
vendored
|
@ -8,6 +8,16 @@ on:
|
||||||
- trying
|
- trying
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
rust-audit:
|
||||||
|
name: Audit Rust vulnerabilities
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v1
|
||||||
|
|
||||||
|
- run: cargo install cargo-audit
|
||||||
|
- run: cargo audit
|
||||||
|
|
||||||
rust:
|
rust:
|
||||||
name: Rust
|
name: Rust
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
|
|
Loading…
Reference in a new issue