-
Notifications
You must be signed in to change notification settings - Fork 95
40 lines (34 loc) · 892 Bytes
/
recursion.yml
File metadata and controls
40 lines (34 loc) · 892 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
36
37
38
39
40
name: Recursion Tests
on:
push:
branches: ["main"]
pull_request:
branches: ["**"]
paths:
- "Cargo.toml"
- "crates/recursion/**"
- ".github/workflows/recursion.yml"
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
jobs:
tests:
name: Recursion tests
runs-on:
- runs-on=${{ github.run_id }}/runner=16cpu-linux-arm64
steps:
- uses: runs-on/action@v2
- uses: actions/checkout@v5
with:
submodules: recursive
- uses: dtolnay/rust-toolchain@stable
env:
RUSTUP_PERMIT_COPY_RENAME: "1"
- uses: Swatinem/rust-cache@v2
- uses: taiki-e/install-action@nextest
- name: Run tests
working-directory: crates/recursion
run: |
cargo nextest run