Files
test-action-runners/.gitea/workflows/test.yaml
Matheus Garcias a97b20a919
All checks were successful
CI Demo / build (push) Successful in 1m11s
Add .gitea/workflows/test.yaml
Signed-off-by: Matheus Garcias <matheus.dasilva.garcias@gmail.com>
2026-02-03 02:57:28 +00:00

12 lines
368 B
YAML

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