-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (31 loc) · 816 Bytes
/
Copy pathrust.yml
File metadata and controls
35 lines (31 loc) · 816 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
30
31
32
33
34
35
name: Rust with MIRI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- "1.56.1"
- stable
steps:
- uses: actions/checkout@v4
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- if: matrix.toolchain == 'stable'
run: cargo fmt --check
- if: matrix.toolchain == '1.56.1'
run: rm Cargo.lock
- run: cargo build --verbose
- run: cargo test --verbose
miri:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup update nightly && rustup default nightly && rustup component add miri
- run: cargo miri test --verbose