From 2f119ad289103d2e4dd26397cfb09ba47459d099 Mon Sep 17 00:00:00 2001 From: clawbot Date: Mon, 16 Mar 2026 21:33:05 -0700 Subject: [PATCH] Add Gitea Actions workflow for CI checks Adds .gitea/workflows/check.yml that runs docker build on push, matching the standard CI pattern used across all sneak/* repos. The Dockerfile already runs make check (fmt-check, lint, test) so a successful build implies all checks pass. --- .gitea/workflows/check.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .gitea/workflows/check.yml diff --git a/.gitea/workflows/check.yml b/.gitea/workflows/check.yml new file mode 100644 index 0000000..eedd413 --- /dev/null +++ b/.gitea/workflows/check.yml @@ -0,0 +1,9 @@ +name: check +on: [push] +jobs: + check: + runs-on: ubuntu-latest + steps: + # actions/checkout v4.2.2, 2026-03-16 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 + - run: docker build .