Test Gitea Runner
This commit is contained in:
parent
12f48d7b91
commit
379322ef81
23
.gitea/workflows/test-runner.yml
Normal file
23
.gitea/workflows/test-runner.yml
Normal file
|
@ -0,0 +1,23 @@
|
|||
name: Test Runner
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: self-hosted
|
||||
steps:
|
||||
- name: Check out the code
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Print Hello World
|
||||
run: echo "🎉 Gitea Runner is working!"
|
||||
|
||||
- name: List files
|
||||
run: ls -lah
|
||||
|
||||
- name: Show Docker info
|
||||
run: docker info || echo "Docker not found"
|
||||
|
Loading…
Reference in New Issue
Block a user