Skip to content

Weekly CI

Weekly CI #250

Workflow file for this run

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
if: github.repository_owner == 'getsentry'
steps:
- uses: actions/checkout@v4
- 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
if: github.repository_owner == 'getsentry'
steps:
- uses: actions/checkout@v4
- uses: rustsec/audit-check@69366f33c96575abad1ee0dba8212993eecbe998 # v2.0.0
with:
token: ${{ secrets.GITHUB_TOKEN }}