forked from getsentry/sentry-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (34 loc) · 872 Bytes
/
weekly.yml
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Weekly CI
on:
schedule:
- cron: "0 0 * * 1" # every monday at 00:00
env:
RUSTFLAGS: -Dwarnings
jobs:
weekly-clippy-beta:
name: Clippy Beta
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: beta
profile: minimal
override: true
components: clippy
- uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-features --workspace --tests --examples -- -D clippy::all
- uses: actions-rs/cargo@v1
with:
command: test
args: --workspace --all-features
weekly-audit:
name: Audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/audit-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}