mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-12 21:28:51 +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
|
- 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