mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-12 13:18:47 +00:00
Merge pull request #3330 from Veetaha/feature/cargo-audit
cicd: add cargo audit
This commit is contained in:
commit
cfc6abed9d
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