Skip to content

Commit 9538187

Browse files
committed
run tests when PR opened
1 parent 99d01d5 commit 9538187

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/test.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
name: "test"
3+
4+
on:
5+
push:
6+
branches:
7+
- 'master'
8+
pull_request: {}
9+
10+
jobs:
11+
test:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v3
15+
- run: make test

0 commit comments

Comments
 (0)