File: audit.yml

package info (click to toggle)
rust-imap-codec 2.0.0~alpha6-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,952 kB
  • sloc: makefile: 2; sh: 1
file content (26 lines) | stat: -rw-r--r-- 533 bytes parent folder | download | duplicates (2)
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
name: audit
on:
  push:
    branches: [ main ]
  pull_request:
    branches: [ main ]
  schedule:
    # 21:43 on Wednesday and Sunday. (Thanks, crontab.guru)
    - cron: '43 21 * * 3,0'
  workflow_dispatch:

concurrency:
  group: ${{ github.workflow }}-${{ github.ref }}
  cancel-in-progress: true

jobs:
  audit:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v5

      - uses: ./.github/actions/cache_restore
      - run: cargo install just
      - run: just audit
      - uses: ./.github/actions/cache_save