22 lines
307 B
YAML
22 lines
307 B
YAML
name: Test
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu
|
|
steps:
|
|
- name: Echo hello
|
|
run: |
|
|
echo "Hello Gitea Actions!"
|
|
|
|
- name: Show system info
|
|
run: |
|
|
uname -a
|
|
|
|
- name: Show current directory
|
|
run: |
|
|
pwd |