Create c-cpp.yml
This commit is contained in:
parent
f735bad5c0
commit
37aa08be39
1 changed files with 19 additions and 0 deletions
19
.github/workflows/c-cpp.yml
vendored
Normal file
19
.github/workflows/c-cpp.yml
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
name: install test
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: make install test
|
||||
run: make install
|
||||
- name: make uninstall
|
||||
run: make uninstall
|
Loading…
Reference in a new issue