Abort if nim != 1.6.0 #293
Workflow file for this run
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: Omni - Test Suite | |
on: | |
push: | |
paths: | |
- '**/*.nim' | |
- '**/*.nims' | |
- '**/*.cfg' | |
- '**/*.nimble' | |
- '**/*.yml' | |
pull_request: | |
paths: | |
- '**/*.nim' | |
- '**/*.nims' | |
- '**/*.cfg' | |
- '**/*.nimble' | |
- '**/*.yml' | |
jobs: | |
All_Linux: | |
name: All Tests - Linux | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: jiro4989/setup-nim-action@v1 | |
with: | |
nim-version: 'stable' | |
- run: nimble install -Y | |
- run: nimble test -Y | |
All_MacOS: | |
name: All Tests - MacOS | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Nim | |
uses: asdf-vm/actions/install@v1 | |
with: | |
tool_versions: | | |
nim latest | |
- name: nimble install -Y | |
run: | | |
. "${HOME}/.asdf/asdf.sh" | |
asdf local nim latest | |
nimble install -Y | |
- run: nimble test -Y | |
#Windows does not work well |