We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19dfa17 commit 1e21db8Copy full SHA for 1e21db8
.github/workflows/e2e.yaml
@@ -14,7 +14,14 @@ concurrency:
14
15
jobs:
16
regular-path:
17
- runs-on: ubuntu-latest
+ strategy:
18
+ matrix:
19
+ include:
20
+ - arch: amd64
21
+ runner: ubuntu-latest
22
+ - arch: arm64
23
+ runner: github-hosted-ubuntu-arm64
24
+ runs-on: ${{ matrix.runner }}
25
steps:
26
- name: Checkout code
27
uses: actions/checkout@v4
.github/workflows/test.yml
@@ -37,7 +37,14 @@ jobs:
37
- name: Check generated files
38
run: make generate check/unstaged-changes
39
test:
40
41
42
43
44
45
46
47
48
49
50
0 commit comments