Skip to content

Commit e81d776

Browse files
committed
Add github actions workflow for new CI
Signed-off-by: Michael Adam <obnox@samba.org>
1 parent 7af5b1a commit e81d776

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/main.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v2
14+
- run: ./autogen.sh
15+
- run: ./configure
16+
- run: make
17+
- run: make test
18+
valgrind:
19+
runs-on: ubnutu-latest
20+
steps:
21+
- uses: actions/checkout@v2
22+
- name: install valgrind
23+
run: apt-get install --assume-yes valgrind
24+
- run: ./autogen.sh
25+
- run: ./configure --enable-debug --enable-transparent --enable-reverse
26+
- run: make
27+
- run: make test
28+
- run: make valgrind-test

0 commit comments

Comments
 (0)