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