ELFIO/.github/workflows/c-cpp.yml
Serge Lamikhov-Center b80c1d9f76
Update c-cpp.yml
2020-08-24 22:14:24 +03:00

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