Skip to content

Automatically build and run tests on push. #1

Automatically build and run tests on push.

Automatically build and run tests on push. #1

Workflow file for this run

name: Build and run tests
on:
push:
pull_request:
workflow_dispatch:
jobs:
linux:
name: Ubuntu
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: autogen
run: ./utils/autogen.sh
- name: configure
run: ./configure
- name: make
run: make
- name: make check
run: make check
- name: make distcheck
run: make distcheck
macos:
name: macOS
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: prepare
run: brew install autoconf automake libtool
- name: autogen
run: ./utils/autogen.sh
- name: configure
run: ./configure
- name: make
run: make
- name: make check
run: make check
- name: make distcheck
run: make distcheck