commit a97b20a919d518e785d955409d308a92f8f67247 Author: Matheus Garcias Date: Tue Feb 3 02:57:28 2026 +0000 Add .gitea/workflows/test.yaml Signed-off-by: Matheus Garcias 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