- typo in workflows #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: (MaxOS) Grid, Graph, and CLI Tests | |
on: | |
push: | |
paths: | |
- 'tests/**' | |
- 'nimplex.nim' | |
- '.github/workflows/testingOnPush_Apple.yaml' | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- 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 |