-
-
Notifications
You must be signed in to change notification settings - Fork 73
53 lines (45 loc) · 1.09 KB
/
Miri.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
45
46
47
48
49
50
51
52
53
name: Miri tests
on:
push:
paths-ignore:
- '.devcontainer/**'
- '.gitpod.yml'
- '.vscode/**'
- 'tests/**'
pull_request:
paths-ignore:
- '.devcontainer/**'
- '.gitpod.yml'
- '.vscode/**'
- 'tests/**'
schedule:
# Run against the last commit on the default branch on Friday at 9pm (UTC?)
- cron: '0 21 * * 5'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Moka
uses: actions/checkout@v2
- name: Install Rust nightly toolchain with Miri
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
components: miri
- uses: Swatinem/rust-cache@v1
- name: cargo clean
uses: actions-rs/cargo@v1
with:
command: clean
- name: Run Miri test (deque)
uses: actions-rs/cargo@v1
with:
command: miri
args: test deque
- name: Run Miri test (timer_wheel)
uses: actions-rs/cargo@v1
with:
command: miri
args: test timer_wheel