Skip to content

tests

tests #119

Workflow file for this run

name: tests
on:
pull_request:
push:
branches-ignore: [gh-pages]
schedule:
- cron: '0 0 * * 1'
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
nimversion: ["binary:1.6", "binary:stable"]
os: [ubuntu-latest, macOS-latest, windows-latest]
exclude:
- os: macOS-latest
nimversion: binary:1.6
include:
- os: macOS-13
nimversion: binary:1.6
steps:
- uses: actions/checkout@v1
- uses: iffy/install-nim@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
version: ${{ matrix.nimversion }}
- name: Test
run: |
nimble install
nimble test
nimble refresh