mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-19 00:21:32 +03:00
29 lines
461 B
YAML
29 lines
461 B
YAML
|
{{{{raw}}}}
|
||
|
name: Audit
|
||
|
|
||
|
on:
|
||
|
schedule:
|
||
|
- cron: '0 0 * * *'
|
||
|
push:
|
||
|
branches:
|
||
|
- main
|
||
|
paths:
|
||
|
- "**/Cargo.lock"
|
||
|
- "**/Cargo.toml"
|
||
|
pull_request:
|
||
|
branches:
|
||
|
- main
|
||
|
paths:
|
||
|
- "**/Cargo.lock"
|
||
|
- "**/Cargo.toml"
|
||
|
|
||
|
jobs:
|
||
|
audit:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- uses: actions-rs/audit-check@v1
|
||
|
with:
|
||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||
|
{{{{/raw}}}}
|