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

33
.github/workflows/norminette.yml vendored Normal file
View File

@@ -0,0 +1,33 @@
name: Norminette
on:
push:
jobs:
check-norminette:
name: Norminette
runs-on: ubuntu-latest
if: ${{ github.repository != 'sdevsantiago/42_project_template' }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install Norminette
run: pip install --upgrade norminette
- name: Show Version
run: norminette --version
- name: Run Norminette
run: norminette -R CheckForbiddenSourceHeader -R CheckDefine -R CheckLine -R CheckVariableName -R CheckFunctionName --use-gitignore > norminette-report.txt
- name: Upload Norminette report
uses: actions/upload-artifact@v4
with:
name: norminette-report
path: norminette-report.txt