Files
bgpq4/.github/workflows/build.yml
2022-11-05 00:01:30 +01:00

21 lines
377 B
YAML

name: Build and test (single linux distro)
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: bootstrap
run: ./bootstrap
- name: configure
run: ./configure
- name: make
run: make
- name: make check
run: make check
- name: make distcheck
run: make distcheck