Create makefile.yml

This commit is contained in:
imxyd 2022-01-21 19:54:44 +08:00 committed by GitHub
parent 73d7108a62
commit 3c063334a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

27
.github/workflows/makefile.yml vendored Normal file
View File

@ -0,0 +1,27 @@
name: Makefile CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
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