tangled
alpha
login
or
join now
samanthanguyen.me
/
rust
0
fork
atom
repository template for Rust projects
0
fork
atom
overview
issues
pulls
pipelines
ci: delete miri workflow (for now)
samanthanguyen.me
2 months ago
5942328e
aa19dbdc
3/4
build.yml
success
20s
codeqa-clippy.yml
success
21s
codeqa-rustfmt.yml
success
20s
test.yml
failed
4m
-27
1 changed file
expand all
collapse all
unified
split
.tangled
workflows
test-miri.yml
-27
.tangled/workflows/test-miri.yml
reviewed
···
1
1
-
when:
2
2
-
- event: ["push", "pull_request"]
3
3
-
branch: ["main"]
4
4
-
5
5
-
engine: "nixery"
6
6
-
7
7
-
dependencies:
8
8
-
nixpkgs:
9
9
-
- cargo
10
10
-
- rustup
11
11
-
12
12
-
steps:
13
13
-
- name: Setup Rust
14
14
-
command: |
15
15
-
rustup set profile minimal
16
16
-
rustup toolchain install nightly
17
17
-
rustup override set nightly
18
18
-
rustup component add miri
19
19
-
- name: Print environment info
20
20
-
command: |
21
21
-
cargo --version
22
22
-
cargo miri --version
23
23
-
rustup --version
24
24
-
- name: Setup Miri
25
25
-
command: cargo miri setup
26
26
-
- name: Run tests with Miri
27
27
-
command: cargo miri test