Create makefile.yml

pull/307/head
Eternal Reclaimer 1 year ago committed by Zack
parent cebc10f0c0
commit 54573db0be

@ -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@v3
- name: configure
run: ./configure
- name: Install dependencies
run: make
- name: Run check
run: make check
- name: Run distcheck
run: make distcheck
Loading…
Cancel
Save