mirror of
https://github.com/serge1/ELFIO.git
synced 2024-11-02 11:27:03 +00:00
32 lines
505 B
YAML
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
|