mirror of
https://github.com/creating2morrow/neveko.git
synced 2024-12-31 16:09:27 +00:00
add cargo-audit
This commit is contained in:
parent
431cba5405
commit
980909d1f1
1 changed files with 26 additions and 0 deletions
26
.github/workflows/audit.yml
vendored
Normal file
26
.github/workflows/audit.yml
vendored
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
name: Audit
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
paths-ignore:
|
||||||
|
- 'docs/**'
|
||||||
|
- 'scripts/**'
|
||||||
|
- 'README.md'
|
||||||
|
branches: [ "dev" ]
|
||||||
|
pull_request:
|
||||||
|
branches: [ "dev" ]
|
||||||
|
|
||||||
|
env:
|
||||||
|
CARGO_TERM_COLOR: always
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- name: Install dependencies
|
||||||
|
run: sudo apt install -y libssl-dev build-essential libgpgme-dev
|
||||||
|
- name: Audit
|
||||||
|
run: cargo install cargo-audit && cargo audit
|
Loading…
Reference in a new issue