-
Notifications
You must be signed in to change notification settings - Fork 95
41 lines (35 loc) · 988 Bytes
/
continuations.yml
File metadata and controls
41 lines (35 loc) · 988 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
41
name: Continuations Tests
on:
push:
branches: ["main"]
pull_request:
branches: ["**"]
paths:
- "crates/continuations/**"
- "crates/recursion/**"
- ".github/workflows/continuations.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@v6
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/continuations
run: |
rustup component add rust-src --toolchain nightly-2025-08-02
cargo nextest run