woodpecker/.woodpecker.yml

18 lines
302 B
YAML
Raw Normal View History

2024-05-24 13:11:19 +00:00
steps:
- name: test
2024-05-24 13:06:34 +00:00
image: ubuntu
commands:
- echo "Starting tests"
- ls -la
- echo "Running tests"
- ./start_woodpecker_agent.sh
- echo "Tests complete"
2024-05-24 13:28:35 +00:00
when:
branch:
- master
- main
event:
- push
- pull_request
2024-05-24 13:28:35 +00:00