Skip to content

Generate Coverage

Generate Coverage #16

Workflow file for this run

name: Generate Coverage
on:
workflow_run:
workflows: [Test]
types: [completed]
permissions:
statuses: write
jobs:
context:
if: ${{ github.event.workflow_run.event == 'push' && github.event.workflow_run.conclusion == 'success' }}
runs-on: ubuntu-latest
steps:
- name: Dump GitHub context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
smokeshow:
needs: context
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
fail-fast: true
steps:
- name: Dump GitHub context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: pip install smokeshow
- uses: dawidd6/[email protected]
with:
workflow: tests.yml
commit: ${{ github.event.workflow_run.head_sha }}
- run: smokeshow upload coverage
env:
SMOKESHOW_GITHUB_STATUS_DESCRIPTION: Coverage {coverage-percentage}
SMOKESHOW_GITHUB_COVERAGE_THRESHOLD: 85
SMOKESHOW_GITHUB_CONTEXT: Coverage
SMOKESHOW_GITHUB_PR_HEAD_SHA: ${{ github.event.workflow_run.head_sha }}
SMOKESHOW_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}