11 lines
183 B
YAML
11 lines
183 B
YAML
name: Hello World
|
|
on: [push]
|
|
|
|
jobs:
|
|
hello:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Say hello
|
|
run: echo "Hello, Gitea Actions!"
|