Mark Spanbroek 946a870ef4 Disable testing on Windows for now
Nimble fails to download packages with error:
"No SSL/TLS CA certificates found"
2021-03-03 10:56:12 +01:00

21 lines
391 B
YAML

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
nim: [stable, 1.2.6]
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