Skip to content

Commit 0e42475

Browse files
authored
Merge branch 'main' into codeowners
2 parents 80b1f9b + f40ae48 commit 0e42475

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

.github/workflows/rust.yml renamed to .github/workflows/test.yml

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build and Test
1+
name: Test
22

33
on:
44
push:
@@ -11,8 +11,13 @@ env:
1111

1212
jobs:
1313
build:
14-
15-
runs-on: ubuntu-latest
14+
name: Build on ${{ matrix.configs.runner }}
15+
runs-on: ${{ matrix.configs.runner }}
16+
strategy:
17+
matrix:
18+
configs:
19+
- runner: warp-ubuntu-latest-x64-32x
20+
- runner: warp-ubuntu-latest-arm64-32x
1621

1722
steps:
1823
- uses: actions/checkout@v4
@@ -26,7 +31,13 @@ jobs:
2631
run: cargo build --verbose --workspace
2732

2833
test:
29-
runs-on: ubuntu-latest
34+
name: Test on ${{ matrix.configs.runner }}
35+
runs-on: ${{ matrix.configs.runner }}
36+
strategy:
37+
matrix:
38+
configs:
39+
- runner: warp-ubuntu-latest-x64-16x
40+
- runner: warp-ubuntu-latest-arm64-16x
3041

3142
steps:
3243
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)