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

32 lines
505 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-24 19:14:24 +00:00
- name: autoreconf
run: autoreconf -i -f
2020-08-24 19:03:23 +00:00
- name: configure
2020-08-24 19:14:24 +00:00
run: ./configure
2020-08-24 19:03:23 +00:00
- name: make
run: make
- name: make tests
run:
cd tests
2020-08-24 19:09:40 +00:00
autoreconf -i -f
2020-08-24 19:03:23 +00:00
./cofigure
make
make check
cd ..
- name: make distcheck
run: make distcheck