add makefile template (#1093)

Co-authored-by: Ashwin Sangem <ashwinsangem@github.com>
This commit is contained in:
Ninad Kavimandan
2021-09-16 11:02:21 +05:30
committed by GitHub
co-authored by Ashwin Sangem
parent df5ac56102
commit 1cb322141e
3 changed files with 34 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
name: Makefile CI
on:
push:
branches: [ $default-branch ]
pull_request:
branches: [ $default-branch ]
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
+6
View File
@@ -0,0 +1,6 @@
{
"name": "Build projects with Make",
"description": "Build and test a project using Make.",
"iconName": "makefile",
"categories": ["Makefile"]
}