Skip to content

C99 cleanups (#101) #53

C99 cleanups (#101)

C99 cleanups (#101) #53

Workflow file for this run

name: autotools make
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: autoreconf
run: autoreconf -fi
- name: configure
run: ./configure || cat config.log
- name: make
run: make -j $(nproc)
- name: make check
run: make check -j $(nproc)
- name: make distcheck
run: make distcheck -j $(nproc)