Skip to content

tests

tests #82

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:stable"]
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@v1
- uses: iffy/install-nim@v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
version: ${{ matrix.nimversion }}
- name: Test
run: |
nimble install
nimble test
nimble refresh