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 f10a767 commit e08b31bCopy full SHA for e08b31b
.github/workflows/ci.yml
@@ -6,14 +6,24 @@ on:
6
7
jobs:
8
test:
9
- runs-on: ubuntu-latest
+ strategy:
10
+ fail-fast: false
11
+ matrix:
12
+ os: [
13
+ ubuntu-latest, # x64
14
+ buildjet-2vcpu-ubuntu-2204-arm, # ARM
15
+ ]
16
+
17
+ runs-on: ${{matrix.os}}
18
19
steps:
20
- name: Checkout ReScript
21
uses: actions/checkout@v4
22
with:
23
repository: rescript-lang/rescript-compiler
24
25
+ - run: sudo apt update
26
27
- name: Setup OCaml
28
uses: ocaml/[email protected]
29
0 commit comments