33 lines
670 B
YAML
33 lines
670 B
YAML
name: Makefile
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- develop
|
|
|
|
jobs:
|
|
check-makefile:
|
|
name: Makefile
|
|
runs-on: ubuntu-latest
|
|
if: ${{ github.repository != 'sdevsantiago/42_project_template' }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set up Prerequisites
|
|
run: sudo apt install build-essential libreadline-dev
|
|
|
|
- name: Show Make Version
|
|
run: make --version
|
|
|
|
- name: Run Makefile
|
|
run: make > makefile-report.txt
|
|
|
|
- name: Upload Makefile report
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: makefile-report
|
|
path: makefile-report.txt
|
|
|