mirror of
https://github.com/tauri-apps/tauri-plugin-single-instance.git
synced 2026-02-04 10:51:17 +01:00
27 lines
434 B
YAML
27 lines
434 B
YAML
name: Audit
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
push:
|
|
branches:
|
|
- dev
|
|
paths:
|
|
- "**/Cargo.lock"
|
|
- "**/Cargo.toml"
|
|
pull_request:
|
|
branches:
|
|
- dev
|
|
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 }}
|