16 lines
239 B
Plaintext
16 lines
239 B
Plaintext
name: Hello world
|
|
|
|
on:
|
|
- push
|
|
|
|
jobs:
|
|
say-hello:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Print hello
|
|
run: echo "Hello, world! from Gitea Actions"
|
|
|