Removed devel target for nim so it works with windows #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
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- devel | |
- main | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
nim: | |
- '2.0.x' | |
- 'stable' | |
# - devel | |
os: | |
- ubuntu-latest | |
- windows-latest | |
- macOS-latest | |
name: '${{ matrix.nim }} (${{ matrix.os }})' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup nim | |
uses: jiro4989/setup-nim-action@v2 | |
with: | |
use-nightlies: true | |
nim-version: ${{ matrix.nim }} | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- run: nimble install -y | |
- run: nimble test | |