parent
b57c21da92
commit
cc4400b2e1
1 changed files with 25 additions and 0 deletions
25
.github/workflows/c-cpp.yml
vendored
Normal file
25
.github/workflows/c-cpp.yml
vendored
Normal file
|
@ -0,0 +1,25 @@
|
|||
name: C/C++ CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "main" ]
|
||||
pull_request:
|
||||
branches: [ "main" ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: autoreconf
|
||||
run: autoreconf --install
|
||||
- name: configure
|
||||
run: ./configure
|
||||
- name: make
|
||||
run: make
|
||||
- name: make check
|
||||
run: make check
|
||||
- name: make distcheck
|
||||
run: make distcheck
|
Loading…
Add table
Reference in a new issue