Skip to content

Commit

Permalink
Create makefile.yml
Browse files Browse the repository at this point in the history
Initial CI integration with Makefile; to run make clean and make.
  • Loading branch information
gapisback committed May 21, 2023
1 parent 7f8f1af commit f8bba4e
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
@@ -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@v3

#! - 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 f8bba4e

Please sign in to comment.