Fix Changelog Push Branch Target #100
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: 'Quality Control' | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
permissions: | |
contents: read | |
pull-requests: write | |
jobs: | |
run-suite: | |
name: "Run Suite" | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout Branch' | |
uses: actions/checkout@v4 | |
- name: 'Initialize Environment' | |
uses: ./.github/actions/initialize-environment | |
- name: 'Safety Check Dependencies' | |
run: | | |
make safety_check | |
- name: 'Lint Codebase' | |
run: | | |
make lint | |
- name: 'Type Check Codebase' | |
run: | | |
make type_check | |
- name: 'Validate Formatting' | |
run: | | |
make formatting | |
- name: 'Run Tests' | |
run: | | |
make test | |
- name: 'Generate Coverage Report' | |
run: | | |
make coverage_ci | |
- name: 'Format Coverage Report' | |
uses: irongut/[email protected] | |
if: success() | |
with: | |
filename: coverage.xml | |
badge: false | |
fail_below_min: true | |
format: markdown | |
hide_branch_rate: true | |
hide_complexity: true | |
indicators: true | |
output: both | |
thresholds: '60 80' | |
- name: 'Find PR Rumber' | |
uses: jwalton/[email protected] | |
if: success() | |
id: finder | |
- name: 'Post Coverage Comment' | |
uses: marocchino/[email protected] | |
if: success() | |
with: | |
number: ${{ steps.finder.outputs.pr }} | |
recreate: true | |
path: code-coverage-results.md |