Skip to content

Commit cbaa215

Browse files
committed
CI as well the make build tools
1 parent cbee837 commit cbaa215

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

.github/workflows/make.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: make
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
linux:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout code
10+
uses: actions/checkout@v2
11+
- run: ./configure
12+
- run: make
13+
- run: make test
14+
15+
macos:
16+
runs-on: macos-latest
17+
steps:
18+
- uses: actions/checkout@v2
19+
- run: brew install gcc
20+
- run: ./configure
21+
env:
22+
CC: gcc
23+
- run: make
24+
- run: make test
25+

0 commit comments

Comments
 (0)