Skip to content

Commit

Permalink
Merge pull request #1 from adhishreekadam/adhishreekadam-makefileGith…
Browse files Browse the repository at this point in the history
…ubActions-1

Create makefile.yml
  • Loading branch information
adhishreekadam authored May 28, 2024
2 parents d781d87 + 8f1b6c3 commit 58c902b
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
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

0 comments on commit 58c902b

Please sign in to comment.