Reference types are handled by without
statement with error
#270
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: CI | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
nim: [stable, 1.6.16, 1.4.8, 1.2.18] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: iffy/install-nim@v3 | |
with: | |
version: ${{ matrix.nim }} | |
- name: Build | |
run: nimble install -y | |
- name: Test | |
run: nimble test -y |