1cb322141e
Co-authored-by: Ashwin Sangem <ashwinsangem@github.com>
28 lines
419 B
YAML
28 lines
419 B
YAML
name: Makefile CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ $default-branch ]
|
|
pull_request:
|
|
branches: [ $default-branch ]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: configure
|
|
run: ./configure
|
|
|
|
- name: Install dependencies
|
|
run: make
|
|
|
|
- name: Run check
|
|
run: make check
|
|
|
|
- name: Run distcheck
|
|
run: make distcheck
|