16 lines
211 B
YAML
16 lines
211 B
YAML
name: test
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
hello:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Show basic info
|
|
run: |
|
|
echo "Hello from Gitea Actions"
|
|
uname -a
|