mirror of
https://github.com/serge1/ELFIO.git
synced 2024-12-26 18:15:40 +00:00
Create c-cpp.yml
This commit is contained in:
parent
e18e5bc261
commit
320e33b0f7
28
.github/workflows/c-cpp.yml
vendored
Normal file
28
.github/workflows/c-cpp.yml
vendored
Normal file
@ -0,0 +1,28 @@
|
||||
name: C/C++ CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: configure
|
||||
run: ./configure
|
||||
- name: make
|
||||
run: make
|
||||
- name: make tests
|
||||
run:
|
||||
cd tests
|
||||
./cofigure
|
||||
make
|
||||
make check
|
||||
cd ..
|
||||
- name: make distcheck
|
||||
run: make distcheck
|
Loading…
Reference in New Issue
Block a user