use iffy action & nim binaries #35
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: Test fsnotify | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- windows-latest | |
- macOS-13 | |
nim-version: | |
- binary:stable | |
- nightly:https://github.com/nim-lang/nightlies/releases/tag/latest-devel | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup nim | |
uses: iffy/install-nim@v5 | |
with: | |
version: ${{ matrix.nim-version }} | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install Packages | |
run: nimble install -y | |
- name: Test | |
run: nimble tests |