Create ccpp.yml
This commit is contained in:
parent
00dc8ed557
commit
fb870c2551
19
.github/workflows/ccpp.yml
vendored
Normal file
19
.github/workflows/ccpp.yml
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
name: C/C++ CI
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: make install
|
||||
run: make install --directory example
|
||||
- name: make
|
||||
run: make --directory example
|
||||
- name: check
|
||||
run: make check --directory example
|
||||
- name: distcheck
|
||||
run: make distcheck --directory example
|
Loading…
Reference in New Issue
Block a user