From 0d5983f047a6300ff3ac06838ceb2088aebfd334 Mon Sep 17 00:00:00 2001 From: Matteo Rosati Date: Wed, 22 Apr 2026 23:03:33 +0200 Subject: [PATCH] add test action --- .gitea/workflows/test.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .gitea/workflows/test.yaml diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml new file mode 100644 index 0000000..0a01b0f --- /dev/null +++ b/.gitea/workflows/test.yaml @@ -0,0 +1,15 @@ +name: test + +on: + push: + branches: + - main + +jobs: + hello: + runs-on: ubuntu-latest + steps: + - name: Show basic info + run: | + echo "Hello from Gitea Actions" + uname -a