-
Notifications
You must be signed in to change notification settings - Fork 0
77 lines (77 loc) · 2.1 KB
/
pr.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
name: pr
on:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
components: clippy
profile: minimal
toolchain: 1.73.0
- name: Install Rust (nightly)
uses: actions-rs/toolchain@v1
with:
components: rustfmt
profile: minimal
toolchain: nightly
- name: Install Node
uses: actions/setup-node@v3
with:
cache: npm
cache-dependency-path: playground/package-lock.json
node-version: 18
- name: Setup Rust cache
uses: Swatinem/rust-cache@v1
- name: Install just + wasm-pack
uses: taiki-e/install-action@v2
with:
tool: just,wasm-pack
- name: Run linters
run: just lint-all
test-miri:
runs-on: ubuntu-latest
strategy:
matrix:
partition: [1, 2, 3, 4, 5, 6, 7, 8]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
components: miri
profile: minimal
toolchain: nightly
- name: Setup Rust cache
uses: Swatinem/rust-cache@v1
- name: Install cargo-nextest + just
uses: taiki-e/install-action@v2
with:
tool: cargo-nextest,just
- name: Run tests
run: just test-miri --no-fail-fast --partition=count:${{ matrix.partition }}/8 --test-threads=num-cpus
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
- name: Setup Rust cache
uses: Swatinem/rust-cache@v1
- name: Install cargo-nextest + just
uses: taiki-e/install-action@v2
with:
tool: cargo-nextest,just
- name: Run tests
run: just test --no-fail-fast