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 560b71a commit 5d4a756Copy full SHA for 5d4a756
.github/workflows/test.yml
@@ -7,12 +7,21 @@ on:
7
- master
8
jobs:
9
tests:
10
- runs-on: ubuntu-latest
+ strategy:
11
+ matrix:
12
+ include:
13
+ - system: x86_64-linux
14
+ runner: ubuntu-latest
15
+ - system: aarch64-linux
16
+ runner: ubuntu-24.04-arm
17
+ runs-on: ${{ matrix.runner }}
18
steps:
19
- uses: actions/checkout@v3
20
with:
21
fetch-depth: 0
22
- uses: cachix/install-nix-action@v31
23
+ with:
24
+ extra_nix_config: |
25
+ extra-systems = ${{ matrix.platform }}
26
- uses: DeterminateSystems/magic-nix-cache-action@main
- #- run: nix flake check
- - run: nix-build -A checks.x86_64-linux.build -A checks.x86_64-linux.validate-openapi
27
+ - run: nix-build -A checks.${{ matrix.system }}.build -A checks.${{ matrix.platform }}.validate-openapi
0 commit comments