From 87f8819acf6dc28bf5d3c14b334268236d686f48 Mon Sep 17 00:00:00 2001 From: Tonis Tiigi Date: Fri, 27 Mar 2026 08:10:00 -0700 Subject: [PATCH] Dummy workflow to enable GitHub Actions Signed-off-by: Tonis Tiigi --- .github/workflows/ci.yml | 14 ++++++++++++++ 1 file changed, 14 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 00000000..f6fc4468 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,14 @@ +name: ci + +on: + workflow_dispatch: + push: + pull_request: + +jobs: + dummy: + runs-on: ubuntu-latest + steps: + - + name: Checkout + uses: actions/checkout@v2 \ No newline at end of file