1
0
Fork 0
mirror of https://codeberg.org/demostf/sync.git synced 2026-06-03 16:44:07 +02:00

add audit job

This commit is contained in:
Robin Appelman 2019-10-27 19:36:52 +01:00
commit d193913153

19
.github/workflows/audit.yaml vendored Normal file
View file

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