Skip to content

Commit c7771c5

Browse files
committed
add actions
1 parent 9cda646 commit c7771c5

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/test.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: test
2+
3+
on:
4+
push:
5+
paths-ignore:
6+
- 'LICENSE'
7+
- '*.md'
8+
branches:
9+
- develop
10+
11+
jobs:
12+
test:
13+
strategy:
14+
matrix:
15+
os:
16+
- ubuntu-latest
17+
- windows-latest
18+
- macOS-latest
19+
run-on: ${{ matrix.os }}
20+
steps:
21+
- uses: actions/checkout@v2
22+
- uses: jiro4989/setup-nim-action@v1
23+
- run: nimble test -Y

0 commit comments

Comments
 (0)