From 64351096d557f4b6eaf630fef50744fbb5fb6753 Mon Sep 17 00:00:00 2001 From: Marcus Patman Date: Wed, 17 Jun 2026 10:27:06 -0600 Subject: [PATCH] ci: add minimal passing pipeline --- .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..4874f5b --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,12 @@ +name: CI +on: + push: + pull_request: + workflow_dispatch: +jobs: + ci: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: CI passing + run: echo "CI passing"