From 3b51a1108ce8604db3d363866aac4d9895891f16 Mon Sep 17 00:00:00 2001 From: Yassine Lambarki El Allioui Date: Thu, 15 May 2025 10:37:28 +0200 Subject: [PATCH] first --- .github/workflows/init.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/init.yml diff --git a/.github/workflows/init.yml b/.github/workflows/init.yml new file mode 100644 index 000000000..13412824e --- /dev/null +++ b/.github/workflows/init.yml @@ -0,0 +1,17 @@ +name: CI Pipeline + +on: + push: + branches: [ "**" ] + pull_request: + branches: [ "**" ] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + +