Skip to content

Commit

Permalink
Merge pull request #48 from roc-lang/macos-nix-tests
Browse files Browse the repository at this point in the history
test macos too
  • Loading branch information
Anton-4 committed Apr 30, 2024
2 parents 293a73f + 1fe8d14 commit 8e10543
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/ci_nix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,13 @@ concurrency:
cancel-in-progress: true

jobs:
build-and-test:
runs-on: [ubuntu-22.04]
build-and-test-nix:
strategy:
fail-fast: false
matrix:
# macos-11 uses x86-64 machine, macos-14 uses aarch64
os: [ macos-11, macos-14, ubuntu-22.04 ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3

Expand All @@ -26,4 +31,4 @@ jobs:
# the result folder is produced by the previous step
- name: Run all tests
run: nix develop -c sh -c 'export ROC=roc && export EXAMPLES_DIR=./examples/ && ./ci/all_tests.sh'


0 comments on commit 8e10543

Please sign in to comment.