1
0
Fork 0
mirror of https://github.com/sile/hls_m3u8.git synced 2024-05-04 09:38:58 +00:00

add cargo audit to github actions

This commit is contained in:
Luro02 2020-04-09 14:18:53 +02:00
parent 34df16f7d6
commit a085971c42
No known key found for this signature in database
GPG key ID: B66FD4F74501A9CF

14
.github/workflows/audit.yml vendored Normal file
View file

@ -0,0 +1,14 @@
name: Security audit
on:
push:
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
jobs:
security_audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/audit-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}