(core) added a Python binding for the new simplex_graph_limited fun…
#63
This file contains hidden or 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: Windows Tests | |
| on: | |
| push: | |
| paths: | |
| - 'tests/**' | |
| - 'nimplex.nim' | |
| - 'nimplex.nimble' | |
| - '.github/workflows/testingOnPush_Windows.yaml' | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| runs-on: windows-latest | |
| strategy: | |
| matrix: | |
| nim: | |
| - '2.0.x' | |
| - 'stable' | |
| name: Nim ${{ matrix.nim }} Test | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install Miniconda | |
| uses: conda-incubator/setup-miniconda@v3 | |
| with: | |
| auto-update-conda: true | |
| python-version: '3.11' | |
| - name: Install Nim | |
| run: conda install -c conda-forge libopenblas mkl | |
| - uses: jiro4989/setup-nim-action@v2 | |
| with: | |
| nim-version: ${{ matrix.nim }} | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| - 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 limited graph tests | |
| run: nim c -r -d:release tests/limitedgraph.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 |