Weekly CI #15
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: "14 3 * * 5" # every friday at 03:14 | |
workflow_dispatch: | |
env: | |
RUSTFLAGS: -Dwarnings | |
jobs: | |
weekly-ci: | |
strategy: | |
fail-fast: false | |
matrix: | |
rust: [nightly, beta] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: | | |
rustup toolchain install ${{ matrix.rust }} --profile minimal --component clippy --no-self-update | |
rustup default ${{ matrix.rust }} | |
- uses: arduino/setup-protoc@v3 | |
- run: cargo clippy --all-features --workspace --tests --examples -- -D clippy::all | |
- run: cargo test --workspace --all-features --all-targets | |
- run: cargo test --workspace --all-features --doc |