Skip to content

Commit 18fe406

Browse files
authored
Merge pull request #2 from parsley72/add-github-build
Add GitHub build
2 parents d095cef + c8c65fa commit 18fe406

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/c-cpp.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,22 @@ name: C/C++ CI
22

33
on:
44
push:
5-
branches: [ "master" ]
5+
branches: [ "*" ]
66
pull_request:
7-
branches: [ "master" ]
7+
branches: [ "*" ]
88

99
jobs:
10-
build:
10+
build-linux:
1111

1212
runs-on: ubuntu-latest
1313

1414
steps:
1515
- uses: actions/checkout@v3
1616
- name: configure
1717
run: ./configure
18-
- name: make
18+
- name: make release
1919
run: make
20+
- name: make clean
21+
run: make clean
22+
- name: make debug
23+
run: make CFLAGS="-DDEBUG" CPPFLAGS="-DDEBUG"

0 commit comments

Comments
 (0)