update: added makefile, norminette and sync workflow

This commit is contained in:
2025-10-11 17:17:15 +02:00
parent 161ac6b69d
commit 00d19af02d
3 changed files with 112 additions and 0 deletions

29
.github/workflows/makefile.yml vendored Normal file
View File

@@ -0,0 +1,29 @@
name: Makefile
on:
push:
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
- 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