File tree Expand file tree Collapse file tree 1 file changed +18
-11
lines changed Expand file tree Collapse file tree 1 file changed +18
-11
lines changed Original file line number Diff line number Diff line change 8
8
9
9
jobs :
10
10
build :
11
-
12
11
runs-on : ubuntu-latest
13
-
14
12
steps :
15
- - uses : actions/checkout@v3
16
-
17
- - name : make
18
- run : autoreconf -fi && ./configure && make
13
+ - uses : actions/checkout@v3
14
+ - run : autoreconf -fi && ./configure && make
15
+
16
+ test :
17
+ runs-on : ubuntu-latest
18
+ steps :
19
+ - uses : actions/checkout@v3
20
+
21
+ - run : autoreconf -fi
22
+ - run : ./configure
23
+ - run : make check
24
+ - run : contrib/run_tests.sh
25
+
26
+ lint :
27
+ runs-on : ubuntu-latest
28
+ steps :
29
+ - uses : actions/checkout@v3
30
+ - run : for file in $(find -name *.[c,h,hpp]); do clang-format --dry-run --Werror $file; done
19
31
20
- - name : make test
21
- run : autoreconf -fi && ./configure && make check && ./test_flat_file && ./test_forest
22
-
23
- - name : linting
24
- run : for file in $(find -name *.[c,h,hpp]); do clang-format --dry-run --Werror $file; done
You can’t perform that action at this time.
0 commit comments