mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 04:53:34 +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
|
||||
|
||||
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:
|
||||
name: Rust
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
|
Loading…
Reference in a new issue