Skip to content

Commit

Permalink
Create makefile.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrandeb authored Mar 19, 2024
1 parent 60c2178 commit 158dd69
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Makefile CI

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: autogen
run : ./autogen.sh

- name: configure
run: ./configure

- name: Install dependencies
run: make

- name: Run check
run: make check

- name: Run distcheck
run: make distcheck

0 comments on commit 158dd69

Please sign in to comment.