Skip to content

feat(perf): bench harness, microbench suite, regression detector (#90… #13

feat(perf): bench harness, microbench suite, regression detector (#90…

feat(perf): bench harness, microbench suite, regression detector (#90… #13

Workflow file for this run

# OpenSSF Scorecard — supply-chain security posture.
#
# Runs weekly and on every push to the default branch. Results land in
# the Security tab and (optionally) the OpenSSF dashboard. The badge in
# README.md is updated on each successful run.
name: Scorecard
on:
branch_protection_rule:
schedule:
- cron: "29 7 * * 2" # Tuesday 07:29 UTC
push:
branches: [main]
permissions: read-all
jobs:
analysis:
name: Scorecard analysis
runs-on: ubuntu-latest
permissions:
security-events: write # to upload SARIF to the Security tab
id-token: write # to publish results to OpenSSF
contents: read
actions: read
steps:
- name: Checkout
uses: actions/checkout@v6
with:
persist-credentials: false
- name: Run Scorecard
uses: ossf/scorecard-action@v2.4.3
with:
results_file: results.sarif
results_format: sarif
publish_results: true
- name: Upload SARIF
uses: actions/upload-artifact@v4
with:
name: scorecard-results
path: results.sarif
retention-days: 30
- name: Upload to code-scanning
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: results.sarif