Skip to content

Commit 70091a1

Browse files
authored
Create c-cpp.yml
1 parent 297b6f7 commit 70091a1

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/c-cpp.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
# Allows you to run this workflow manually from the Actions tab
10+
workflow_dispatch:
11+
12+
jobs:
13+
build:
14+
15+
runs-on: ubuntu-latest
16+
17+
steps:
18+
- uses: actions/checkout@v2
19+
- name: make clean
20+
run: make clean
21+
- name: make all
22+
run: make all
23+
- name: make check
24+
run: make check

0 commit comments

Comments
 (0)