Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
ringabout committed Oct 2, 2020
1 parent 03ee384 commit 7fe6d71
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Test Prologue

on: [push, pull_request]

jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
version:
- stable
- devel
steps:
- uses: actions/checkout@v1
- uses: jiro4989/setup-nim-action@v1
with:
nim-version: ${{ matrix.version }}
- name: Install Packages
run: nimble install -y
- name: Test command
run: nimble tests

0 comments on commit 7fe6d71

Please sign in to comment.