Skip to content

- added nimplex's nimble file (specifying dependencies) to the te… #55

- added nimplex's nimble file (specifying dependencies) to the te…

- added nimplex's nimble file (specifying dependencies) to the te… #55

name: MacOS Tests
on:
push:
paths:
- 'tests/**'
- 'nimplex.nim'
- 'nimplex.nimble'
- '.github/workflows/testingOnPush_Apple.yaml'
workflow_dispatch:
jobs:
test-Intel:
runs-on: macos-13
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Nim with Homebrew
run: brew install nim
- name: Install dependencies
run: nimble install -y arraymancer nimpy
- name: Compile nimplex
run: nim c -d:release nimplex.nim
- name: Run grid tests
run: nim c -r -d:release tests/grid.nim
- name: Run graph tests
run: nim c -r -d:release tests/graph.nim
- name: Run CLI tests
run: nim c -r -d:release tests/cli.nim
- name: Run stitching tests
run: nim c -r -d:release tests/stitching.nim
test-M1:
runs-on: macos-15
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Nim with Homebrew
run: brew install nim
- name: Install dependencies
run: nimble install -y arraymancer nimpy
- name: Compile nimplex
run: nim c -d:release nimplex.nim
- name: Run grid tests
run: nim c -r -d:release tests/grid.nim
- name: Run graph tests
run: nim c -r -d:release tests/graph.nim
- name: Run CLI tests
run: nim c -r -d:release tests/cli.nim
- name: Run stitching tests
run: nim c -r -d:release tests/stitching.nim