Smokeshow Pipeline #118
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Smokeshow Pipeline | |
on: | |
workflow_run: | |
workflows: [Test Pipeline] | |
types: [completed] | |
permissions: | |
statuses: write | |
jobs: | |
smokeshow: | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
python-version: [3.13] | |
name: Smokeshow Pipeline | |
timeout-minutes: 5 | |
steps: | |
- name: 🐍 Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5.3.0 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: 📦 Install dependencies | |
run: pip install smokeshow | |
- name: 📥 Download coverage files | |
uses: actions/download-artifact@v4.1.8 | |
with: | |
name: coverage-html | |
path: htmlcov | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
run-id: ${{ github.event.workflow_run.id }} | |
- name: 📊 Upload coverage report | |
run: smokeshow upload htmlcov | |
env: | |
SMOKESHOW_GITHUB_STATUS_DESCRIPTION: Coverage {coverage-percentage} | |
SMOKESHOW_GITHUB_COVERAGE_THRESHOLD: 100 | |
SMOKESHOW_GITHUB_CONTEXT: coverage | |
SMOKESHOW_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SMOKESHOW_GITHUB_PR_HEAD_SHA: ${{ github.event.workflow_run.head_sha }} | |
SMOKESHOW_AUTH_KEY: ${{ secrets.SMOKESHOW_AUTH_KEY }} |