ELFIO/.github/workflows/c-cpp.yml
Serge Lamikhov-Center 2775fb22d6
Update c-cpp.yml
2020-08-25 08:32:05 -07:00

30 lines
484 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: |
cd tests
autoreconf -i -f
./configure
make
make check
- name: make distcheck
run: make distcheck