audit #172
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@64015a69ee7ee08f6c56455089cdaf6ad974fd15 |