From 37a2655e0be7b0890083e4fdbe58e24680495fb9 Mon Sep 17 00:00:00 2001 From: Aymanseif <92527473+Aymanseif@users.noreply.github.com> Date: Tue, 27 Jan 2026 03:50:42 +0200 Subject: [PATCH] chore(ci): enforce sovereign CI baseline --- .github/workflows/ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..103d3b9 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,12 @@ +name: CI + +on: + push: + pull_request: + +jobs: + validate: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - run: echo "CI OK"