Weekly CI #148
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: Weekly CI | |
on: | |
schedule: | |
- cron: "0 0 * * 1" # every monday at 00:00 | |
workflow_dispatch: | |
env: | |
RUSTFLAGS: -Dwarnings | |
jobs: | |
weekly-ci: | |
strategy: | |
fail-fast: false | |
matrix: | |
rust: [nightly, beta] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install libcurl-dev | |
run: | | |
sudo apt update | |
sudo apt-get install -y libcurl4-openssl-dev | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Install rust stable toolchain | |
run: | | |
rustup toolchain install ${{ matrix.rust }} --profile minimal --component clippy --no-self-update | |
rustup default ${{ matrix.rust }} | |
- run: cargo clippy --all-features --workspace --tests --examples -- -D clippy::all | |
- run: cargo test --workspace --all-features | |
weekly-audit: | |
name: Audit | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# FIXME: find a maintained alternative to audit-check | |
- uses: actions-rs/audit-check@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} |