Skip to content

Commit 0e7961f

Browse files
committed
Add test workflow
1 parent fe26775 commit 0e7961f

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/test.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
on: [push, pull_request]
2+
name: Test
3+
jobs:
4+
test:
5+
strategy:
6+
matrix:
7+
os: [ubuntu-latest, macos-latest]
8+
runs-on: ${{ matrix.os }}
9+
steps:
10+
- name: Checkout code
11+
uses: actions/checkout@v2
12+
- name: Get full repo histroy
13+
run: git fetch --prune --unshallow --tags
14+
- name: Test
15+
run: make test

0 commit comments

Comments
 (0)