fork of https://f-hub.org/XMPP/xmpp-discord-bridge

feat!: started working on woodpecker pipeline (unfinished)

+24
+24
.woodpecker/build.yaml
··· 1 + 2 + when: 3 + event: [ push, tag, pull_request ] 4 + branch: master 5 + path: [ "${CI_REPO_NAME}/**/*", "pyproject.toml", "uv.lock", "README.md" ] 6 + 7 + steps: 8 + version: 9 + image: python:3.11-buster 10 + 11 + commands: 12 + - python -m pip install --upgrade pip 13 + - python -m pip install -r pyproject.toml 14 + - name: build 15 + 16 + commands: 17 + - echo "This is the build step" 18 + - echo "binary-data-123" > executable 19 + - name: a-test-step 20 + image: golang:1.16 21 + commands: 22 + - echo "Testing ..." 23 + - ./executable 24 +