-
-
Notifications
You must be signed in to change notification settings - Fork 13
36 lines (32 loc) · 1.04 KB
/
audit.yml
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
28
29
30
31
32
33
34
35
36
name: Audit
on:
schedule:
# 21:43 on Wednesday and Sunday. (Thanks, crontab.guru)
- cron: '43 21 * * 3,0'
workflow_dispatch:
jobs:
# test_extended:
# runs-on: ubuntu-latest
#
# steps:
# - name: Checkout code
# uses: actions/checkout@v4
#
# - uses: taiki-e/install-action@4f8e32492b3baed061f7836e6a4d40eb19e49b71
# with:
# tool: cargo-hack
#
# - name: Test (extended)
# # TODO: We exclude the tokio demos for now to bypass a "none of the selected packages contains these features" error.
# run: |
# cargo hack test \
# --workspace \
# --exclude tokio-client --exclude tokio-server \
# --feature-powerset \
# --group-features starttls,ext_condstore_qresync,ext_login_referrals,ext_mailbox_referrals \
# --exclude-features ext,split
audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: EmbarkStudios/cargo-deny-action@5def368d93be6684ad20a0fdec5f23c8ea11e022