Skip to content

CI smoke test for autoconf make install/uninstall targets #1007

CI smoke test for autoconf make install/uninstall targets

CI smoke test for autoconf make install/uninstall targets #1007

Workflow file for this run

name: autotools build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build-autotools:
runs-on: ubuntu-latest
name: Ubuntu
steps:
- uses: actions/checkout@v2
- name: configure
run: ./configure --prefix=/home/runner/.local
- name: make
run: make
- name: install
run: make install
- name: uninstall
run: make uninstall