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.
1 parent 333dec1 commit 9402903Copy full SHA for 9402903
.github/workflows/test.yml
@@ -12,8 +12,17 @@ on:
12
jobs:
13
build-and-test:
14
runs-on: ubuntu-latest
15
+ strategy:
16
+ fail-fast: false
17
+ matrix:
18
+ include:
19
+ - architecture: x86_64
20
+ container: ubuntu:22.04
21
+ - architecture: aarch64
22
+ container: arm64v8/ubuntu:22.04
23
+
24
container:
- image: ubuntu:22.04
25
+ image: ${{ matrix.container }}
26
27
steps:
28
- name: Checkout the repository
0 commit comments