Skip to content

Codeclimate to monitor coverage and technical debt #19

Codeclimate to monitor coverage and technical debt

Codeclimate to monitor coverage and technical debt #19

Workflow file for this run

name: TPIP Check
on:
pull_request:
paths:
- ".github/workflows/tpip-check.yml"
- "**/go.mod"
- "**/go.sum"
- "scripts/template/**"
workflow_dispatch:
env:
tpip_report: "third_party_licenses.md"
jobs:
check-licenses:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod
check-latest: true
- name: Go tidy
run: go mod tidy
- name: Install go-licenses
run: go install github.com/google/go-licenses@latest
- name: Generate TPIP Report
run: |
go-licenses report . --ignore github.com/Open-CMSIS-Pack/cbuild --template ../../scripts/template/${{ env.tpip_report }}.template > ../../${{ env.tpip_report }}
date +"%Y/%m/%d %T" >> ../../${{ env.tpip_report }}
working-directory: ./cmd/cbuild
- name: Archive TPIP report
uses: actions/upload-artifact@v3
with:
name: tpip-report
path: ./${{ env.tpip_report }}
- name: Print TPIP Report
run: cat ${{ env.tpip_report }} >> $GITHUB_STEP_SUMMARY
- name: Check Licenses
run: go-licenses check . --ignore github.com/Open-CMSIS-Pack/cbuild --disallowed_types=forbidden,restricted
working-directory: ./cmd/cbuild
commit-changes:
# Temporarily moving this job to 'workflow_disapatch'
# in order not to block others and fixing issue releated
# to deletion of GH checks data
if: ${{ github.event_name == 'workflow_dispatch' }}
needs: [ check-licenses ]
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.ref }}
- name: Restore Changes
uses: actions/download-artifact@v3
with:
name: tpip-report
- name: Commit Changes
shell: bash
run: |
git config user.name github-actions
git config user.email github-actions@github.com
git add .
git commit -m "Update TPIP report"
git push