diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6cd5801..b175799 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,15 @@ on: jobs: test: - runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + os: [ + ubuntu-latest, # x64 + buildjet-2vcpu-ubuntu-2204-arm, # ARM + ] + + runs-on: ${{matrix.os}} steps: - name: Checkout ReScript @@ -14,6 +22,8 @@ jobs: with: repository: rescript-lang/rescript-compiler + - run: sudo apt update + - name: Setup OCaml uses: ocaml/setup-ocaml@v3.0.0 with: