fix indent in test / coverage report workflows #2
Workflow file for this run
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: Coverage Report | ||
permissions: | ||
checks: write | ||
pull-requests: write | ||
on: | ||
workflow_run: | ||
workflows: ["Tests"] | ||
types: | ||
- completed | ||
jobs: | ||
download_and_report: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Step to download artifact from a previous workflow run 1 | ||
- name: Download Artifact 1 | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: Test Results (Matlab R2022b) # Replace with your actual artifact name | ||
path: coverage | ||
- name: Publish Test Results | ||
uses: irongut/[email protected] | ||
with: | ||
filename: coverage/coverage.xml | ||
badge: true | ||
fail_below_min: true | ||
format: markdown | ||
hide_branch_rate: false | ||
hide_complexity: true | ||
indicators: true | ||
output: both | ||
thresholds: '40 70' | ||
- name: Add Coverage PR Comment | ||
uses: marocchino/sticky-pull-request-comment@v2 | ||
if: github.event_name == 'pull_request' | ||
with: | ||
recreate: true | ||
path: code-coverage-results.md |