From 9a23f7f0e3d954ba156b7e54a1d9355b1dd938db Mon Sep 17 00:00:00 2001
From: d3vyce <nicolas.sudres@hotmail.fr>
Date: Sat, 25 Mar 2023 22:56:45 +0100
Subject: [PATCH] Ajouter 'clint.yml'

---
 clint.yml | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 clint.yml

diff --git a/clint.yml b/clint.yml
new file mode 100644
index 0000000..5169642
--- /dev/null
+++ b/clint.yml
@@ -0,0 +1,18 @@
+name: Clint
+on: [push]
+jobs:
+  clint:
+    runs-on: ubuntu-latest
+    steps:
+    - name: Check out repository code
+      uses: actions/checkout@v3
+    - name: Set up Python 3.11
+      run: |
+        apt update
+        apt install -y python3 python3-pip
+    - name: Install dependencies
+      run: |
+        python3 -m pip install --upgrade pip
+        pip install cpplint
+    - name: Analysing the code with ansible-lint
+      run: find . -type f -name "*.c" -o -name "*.cpp" | xargs cpplint