Add .gitea/workflows/test.yaml
All checks were successful
CI Demo / build (push) Successful in 1m11s

Signed-off-by: Matheus Garcias <matheus.dasilva.garcias@gmail.com>
This commit is contained in:
2026-02-03 02:57:28 +00:00
commit a97b20a919

View File

@@ -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