We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 80b1f9b + f40ae48 commit 0e42475Copy full SHA for 0e42475
.github/workflows/rust.yml renamed to .github/workflows/test.yml
@@ -1,4 +1,4 @@
1
-name: Build and Test
+name: Test
2
3
on:
4
push:
@@ -11,8 +11,13 @@ env:
11
12
jobs:
13
build:
14
-
15
- runs-on: ubuntu-latest
+ name: Build on ${{ matrix.configs.runner }}
+ 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
21
22
steps:
23
- uses: actions/checkout@v4
@@ -26,7 +31,13 @@ jobs:
26
31
run: cargo build --verbose --workspace
27
32
28
33
test:
29
34
+ name: Test on ${{ matrix.configs.runner }}
35
36
37
38
39
+ - runner: warp-ubuntu-latest-x64-16x
40
+ - runner: warp-ubuntu-latest-arm64-16x
30
41
42
43
0 commit comments