-
Notifications
You must be signed in to change notification settings - Fork 11
88 lines (88 loc) · 2.35 KB
/
ci.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
78
79
80
81
82
83
84
85
86
87
88
name: ci
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
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.78.0
- name: Install Rust (nightly)
uses: actions-rs/toolchain@v1
with:
components: rustfmt
profile: minimal
toolchain: nightly
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
package_json_file: playground/package.json
- name: Install Node
uses: actions/setup-node@v3
with:
cache: pnpm
cache-dependency-path: playground/pnpm-lock.yaml
node-version: 18
- name: Setup Rust cache
uses: Swatinem/rust-cache@v1
- name: Install Task
uses: arduino/setup-task@v2
with:
version: 3.x
- name: Run linters
run: task lint
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
uses: taiki-e/install-action@v2
with:
tool: cargo-nextest
- name: Install Task
uses: arduino/setup-task@v2
- name: Run tests
run: task 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
uses: taiki-e/install-action@v2
with:
tool: cargo-nextest
- name: Install Task
uses: arduino/setup-task@v2
- name: Run tests
run: task test -- --no-fail-fast