Continuous integration with Github actions

This commit is contained in:
Mark Spanbroek 2020-09-03 10:41:05 +02:00
parent 3ed06e148d
commit 1f4d3993e4
1 changed files with 17 additions and 0 deletions

17
.github/workflows/test.yml vendored Normal file
View File

@ -0,0 +1,17 @@
name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- uses: iffy/install-nim@v1.1
- name: Build
run: nimble build -y
- name: Test
run: nimble test -y