CI Integration
There is more than one way to integrate the radius tracker into your CI pipeline. To keep things simple let’s break down the steps into three stages:
Repository Access and Static Analysis
jobs:
run-tracker:
runs-on: ubuntu-latest
steps:
- name: Checkout this repository
uses: actions/checkout@v4jobs:
run-tracker:
runs-on: ubuntu-latest
steps:
- name: Checkout this repository
uses: actions/checkout@v4
- name: Restore cache for tracker
id: cache-radius-tracker
uses: actions/cache/restore@v4
with:
key: cache-radius-tracker-${{hashFiles('radius-tracker.config.js')}}
path: radius-tracker-cache
restore-keys: |
cache-radius-tracker-${{hashFiles('radius-tracker.config.js')}}Generating the Report
Publishing the report
Private Repositories
Last updated