From a97b20a919d518e785d955409d308a92f8f67247 Mon Sep 17 00:00:00 2001 From: Matheus Garcias Date: Tue, 3 Feb 2026 02:57:28 +0000 Subject: [PATCH] Add .gitea/workflows/test.yaml Signed-off-by: Matheus Garcias --- .gitea/workflows/test.yaml | 12 ++++++++++++ 1 file changed, 12 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..491aded --- /dev/null +++ b/.gitea/workflows/test.yaml @@ -0,0 +1,12 @@ +name: CI Demo +on: [push] +workflow_dispatch: +jobs: + build: + runs-on: ubuntu-latest # This job will run on a runner with the 'ubuntu' label + steps: + - uses: actions/checkout@v4 # Downloads the code from the repository + - name: Run a one-line script + run: echo "Hello, Gitea Actions!" + - name: Show os-release + run: cat /etc/os-release \ No newline at end of file