@@ -1,8 +0,0 @@
|
||||
pipelines:
|
||||
default:
|
||||
- step:
|
||||
name: "Test Runner"
|
||||
image: "ubuntu:latest"
|
||||
commands:
|
||||
- echo "Testing Gitea Runner"
|
||||
- echo "Pipeline executed successfully!"
|
||||
18
.gitea/workflows/test.yml
Normal file
18
.gitea/workflows/test.yml
Normal file
@@ -0,0 +1,18 @@
|
||||
name: test
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- name: Echo Hello World
|
||||
run: echo "Hello, World!"
|
||||
- name: Echo content of "Owo.md"
|
||||
run: cat Owo.mod || echo "Owo.md does not exist"
|
||||
Reference in New Issue
Block a user