Compare commits

...

2 Commits

Author SHA1 Message Date
behicof
3babbab301
Merge 995158a2f2 into 43d7947c78 2025-05-12 19:42:52 +10:00
behicof
995158a2f2
Create makefile.yml 2025-05-10 20:57:21 -07:00

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

@ -0,0 +1,27 @@
name: Makefile CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: configure
run: ./configure
- name: Install dependencies
run: make
- name: Run check
run: make check
- name: Run distcheck
run: make distcheck