-
-
Notifications
You must be signed in to change notification settings - Fork 7
29 lines (22 loc) · 732 Bytes
/
weekly.yml
File metadata and controls
29 lines (22 loc) · 732 Bytes
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
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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- 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 --all-targets
- run: cargo test --workspace --all-features --doc