ELFIO/.github/workflows/c-cpp.yml

31 lines
531 B
YAML
Raw Normal View History

2020-08-24 19:03:23 +00:00
name: C/C++ CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
2020-08-25 15:32:05 +00:00
- name: compile and run examples
run: |
autoreconf -i -f
./configure
make
- name: compile and run tests
run: |
2020-08-25 15:35:27 +00:00
sudo apt-get install libboost-test-dev
2020-08-25 15:32:05 +00:00
cd tests
autoreconf -i -f
./configure
make
make check
2020-08-24 19:03:23 +00:00
- name: make distcheck
run: make distcheck