-
Notifications
You must be signed in to change notification settings - Fork 0
64 lines (55 loc) · 1.3 KB
/
Copy pathci.yml
File metadata and controls
64 lines (55 loc) · 1.3 KB
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
54
55
56
57
58
59
60
61
62
63
64
name: CI
on:
push:
branches: [ master, dev ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: RUSTFLAGS="--deny warnings" cargo build
build-all-features:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build with all features
run: RUSTFLAGS="--deny warnings" cargo build --all-features
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run tests
run: cargo test --all-features
miri:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
components: miri
- name: Miri tests
run: cargo +nightly miri test
benches:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build benches
run: cargo build --benches
doc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build doc
run: RUSTFLAGS="--deny warnings" cargo doc --lib
loom:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run loom tests
run: RUSTFLAGS="--cfg loom" cargo test --lib tests::loom_test --release