Files
test/.gitea-ci.yml
2025-11-21 18:49:16 +01:00

11 lines
312 B
YAML

# Gitea CI pipeline configuration
# Define a simple pipeline
pipelines:
default:
- step: # Define a single step
name: "Test Runner"
image: "alpine:latest" # Use a lightweight image
commands:
- echo "Testing Gitea Runner"
- echo "Pipeline executed successfully!"