mirror of
https://github.com/awesome-selfhosted/awesome-selfhosted.git
synced 2025-04-22 13:02:08 +02:00
Create makefile.yml
This commit is contained in:
parent
7ba1ecac37
commit
0cd0e0e0c6
1 changed files with 27 additions and 0 deletions
27
.github/workflows/makefile.yml
vendored
Normal file
27
.github/workflows/makefile.yml
vendored
Normal file
|
@ -0,0 +1,27 @@
|
|||
name: Makefile CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "master" ]
|
||||
pull_request:
|
||||
branches: [ "master" ]
|
||||
|
||||
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
|
Loading…
Add table
Reference in a new issue