Skip to content

Commit 7fe6d71

Browse files
committed
ci
1 parent 03ee384 commit 7fe6d71

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/action.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Test Prologue
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
test:
7+
runs-on: ${{ matrix.os }}
8+
strategy:
9+
matrix:
10+
os:
11+
- ubuntu-latest
12+
- windows-latest
13+
version:
14+
- stable
15+
- devel
16+
steps:
17+
- uses: actions/checkout@v1
18+
- uses: jiro4989/setup-nim-action@v1
19+
with:
20+
nim-version: ${{ matrix.version }}
21+
- name: Install Packages
22+
run: nimble install -y
23+
- name: Test command
24+
run: nimble tests

0 commit comments

Comments
 (0)