29 lines
486 B
YAML
29 lines
486 B
YAML
name: Test Runner
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: System info
|
|
run: |
|
|
echo "Runner: $RUNNER_NAME"
|
|
echo "OS:"
|
|
cat /etc/os-release
|
|
echo "Hostname:"
|
|
hostname
|
|
|
|
- name: Test
|
|
run: |
|
|
echo "Gitea Actions is working!"
|
|
echo "Hello from rocky-runner"
|