1
0
mirror of https://github.com/bgp/bgpq4.git synced 2024-05-11 05:55:05 +00:00

First try at github actions.

This commit is contained in:
Roelf Wichertjes
2019-12-17 11:03:31 +01:00
parent 954b12d3f7
commit e8d261b572

20
.github/workflows/build.yml vendored Normal file
View File

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