From b7bef61af8b1f05063df1b10e7b39e16bc9cf6b3 Mon Sep 17 00:00:00 2001 From: Aymanseif <92527473+Aymanseif@users.noreply.github.com> Date: Tue, 27 Jan 2026 01:31:08 +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"