Skip to content

Fix various Nim 2.0 issue (unary operator, global scope, $ templating) #115

Fix various Nim 2.0 issue (unary operator, global scope, $ templating)

Fix various Nim 2.0 issue (unary operator, global scope, $ templating) #115

Workflow file for this run

on:
pull_request:
branches:
- master
push:
branches:
- devel
- master
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
nim:
- '1.6.x'
- '2.0.x'
- 'stable'
os:
- ubuntu-latest
- windows-latest
- macOS-latest
name: '${{ matrix.nim }} (${{ matrix.os }})'
steps:
- uses: actions/checkout@v2
- name: Setup nim
uses: jiro4989/setup-nim-action@v2
with:
nim-version: ${{ matrix.nim }}
repo-token: ${{ secrets.GITHUB_TOKEN }}
- run: nimble install -y
- run: testament p "tests/t*.nim"
- run: nimble test
- run: nimble gendoc