-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (35 loc) · 734 Bytes
/
make.yml
File metadata and controls
38 lines (35 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: make
on:
push:
paths:
- '**.c'
- '**.h'
- 'Makefile'
branches: [ master ]
pull_request:
paths:
- '**.c'
- '**.h'
- 'Makefile'
branches: [ master ]
jobs:
make:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: git submodule
run: git submodule update --init
- name: all
run: make all
- name: clean
run: make clean
- name: re
run: make re
- name: fclean
run: make fclean
- name: install libcheck
run: brew install check
- name: running unit tests
run: make test
- name: running unit tests with leak checking
run: make test_leaks