We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cbee837 commit cbaa215Copy full SHA for cbaa215
1 file changed
.github/workflows/make.yml
@@ -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
18
+ - uses: actions/checkout@v2
19
+ - run: brew install gcc
20
21
+ env:
22
+ CC: gcc
23
24
25
0 commit comments