File: audit.yml

package info (click to toggle)
rust-tz-rs 0.7.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 404 kB
  • sloc: sh: 18; makefile: 4
file content (27 lines) | stat: -rw-r--r-- 460 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
name: Audit

on:
  schedule:
    - cron: "0 0 * * 0"

jobs:
  audit:
    name: "Audit"

    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v6

      - name: Install Rust
        id: actions-rs
        uses: actions-rs/toolchain@v1
        with:
          profile: minimal
          toolchain: stable
          override: true

      - name: Audit
        run: |
          cargo install cargo-audit
          cargo audit