mirror of
https://github.com/certbot/certbot.git
synced 2026-07-28 08:45:22 +02:00
23 lines
675 B
YAML
23 lines
675 B
YAML
# Advanced pipeline for running our full test suite on demand.
|
|
name: Full test suite
|
|
on:
|
|
push:
|
|
branches:
|
|
# When changing these triggers, please ensure the documentation under
|
|
# "Running tests in CI" is still correct.
|
|
- test-*
|
|
workflow_dispatch:
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
# These four jobs could be grouped in a separate workflow, but the github actions UI
|
|
# is much nicer if they are instead listed explicitly here.
|
|
snap_packaging_jobs:
|
|
name: Snap packaging
|
|
uses: "./.github/workflows/snap_packaging_jobs.yml"
|
|
with:
|
|
snapBuildTimeout: 5400
|
|
secrets:
|
|
LAUNCHPAD_CREDENTIALS: "${{ secrets.LAUNCHPAD_CREDENTIALS }}"
|