ELFIO/.github/workflows/c-cpp.yml
Serge Lamikhov-Center 4ea72e20b9
Update c-cpp.yml
2020-08-25 08:35:27 -07:00

31 lines
531 B
YAML

name: C/C++ CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: compile and run examples
run: |
autoreconf -i -f
./configure
make
- name: compile and run tests
run: |
sudo apt-get install libboost-test-dev
cd tests
autoreconf -i -f
./configure
make
make check
- name: make distcheck
run: make distcheck