Jonas L. 23917f7d8f
ci: fine grained test release (#3171)
### Description

Allow fine grained configuration on which release the test should be
run. This will be useful to start testing liquidsoap >=2.0.0 in our ci.
2025-06-14 18:41:59 +02:00

47 lines
862 B
YAML

name: Worker
on:
workflow_dispatch:
push:
branches: [main, stable-*]
paths:
- .github/workflows/_python-*.yml
- .github/workflows/worker.yml
- worker/**
- tools/python*
pull_request:
branches: [main, stable-*]
paths:
- .github/workflows/_python-*.yml
- .github/workflows/worker.yml
- worker/**
- tools/python*
schedule:
- cron: 0 1 * * 1
jobs:
lint:
uses: ./.github/workflows/_python-lint.yml
with:
context: worker
test-focal:
uses: ./.github/workflows/_python-test.yml
with:
context: worker
release: focal
test-bullseye:
uses: ./.github/workflows/_python-test.yml
with:
context: worker
release: bullseye
test-jammy:
uses: ./.github/workflows/_python-test.yml
with:
context: worker
release: jammy