From c69037cb848872ca1ba39a400916ad6922e9fc1a Mon Sep 17 00:00:00 2001 From: tsranso Date: Sun, 15 Mar 2026 12:49:24 -0400 Subject: [PATCH] add CI workflow --- .gitea/workflows/test.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .gitea/workflows/test.yml diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml new file mode 100644 index 0000000..eac577d --- /dev/null +++ b/.gitea/workflows/test.yml @@ -0,0 +1,9 @@ +name: Test CI +on: [push] +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - run: echo \"Hello from sasquatch-runner!\" + - run: uname -a \ No newline at end of file