Skip to content

Commit 0543aa4

Browse files
adds initial test job
1 parent 98125ff commit 0543aa4

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

.github/workflows/release.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: build
2+
on:
3+
pull_request:
4+
types:
5+
- opened
6+
- synchronize
7+
push:
8+
tags:
9+
- 'v[0-9]+.[0-9]+.[0-9]+*'
10+
11+
jobs:
12+
13+
test-suite:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v2
17+
- name: tests
18+
run: |
19+
make test
20+

0 commit comments

Comments
 (0)