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