add ci config
All checks were successful
ci/woodpecker/manual/woodpecker Pipeline was successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Frederik Ring 2023-09-02 18:02:04 +02:00
parent 0595c9193b
commit fb8349b526
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,12 @@
name: Test Runner
on: [push]
jobs:
sleep:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Sleep a bit
run: |
sleep 300

10
.woodpecker.yml Normal file
View File

@ -0,0 +1,10 @@
# .woodpecker.yml
steps:
build:
image: alpine
commands:
- echo "This is the build step"
a-test-step:
image: alpine
commands:
- echo "Testing.."