Skip to content

Commit b1fdfe0

Browse files
authored
Merge pull request #224 from dannysauer/ci/test_pr
run tests when PR opened
2 parents 99d01d5 + 9538187 commit b1fdfe0

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)