nissimdirect/entropic-v2challenger GitHub Actions scorecard

Public GitHub Actions data, last 30 days. Updated .

Data sourced from public GitHub. GitSpider is not affiliated with or endorsed by this repository's owners. Request removal.

19 min/mo
recoverable (~34% of CI time) · across 5 patterns
Estimated from wall-clock time · public repos pay $0, $ = private-repo equivalent
See all 5 fixes, each with the exact YAML ↓
3.2%
failure rate, 30d
5h 16m
avg time to recover from a failure
Since : findings 9 → 5 · recoverable ~841 → ~19 min/mo (detector updated between scans, so part of this change is ours, not the repo's)
5 workflows · 31 runs (1/day) · 56 CI-min (wall-clock) · ≈$0 at private-repo rates (30d)

Where the minutes go (30d)

perf-nightly~48 min · 30 runs
Entropic v2 Tests~8 min · 1 runs
or track on every push →

Waste detected

Biggest wins first, each with the exact config fix.

Missing dependency cache · perf-nightly

~14 min/mo

Set `cache: 'pip'` on your `actions/setup-python` step, or add an `actions/cache@v4` step keyed on your requirements/lock file.

- uses: actions/setup-python@v5
  with:
    python-version: '3.12'
    cache: 'pip'

Full guide: how to fix this →

No concurrency control · perf-nightly

~5 min/mo

Add a `concurrency:` block keyed on branch to cancel superseded runs when devs push twice quickly.

concurrency:
  group: ${{ github.workflow }}-${{ github.ref }}
  cancel-in-progress: true

Full guide: how to fix this →

Also found: 3 more config fixes with negligible recoverable minutes: timeouts, retention, path filters

Artifacts at default retention · perf-nightly

~0 min/mo

`upload-artifact` has no `retention-days`, so artifacts keep up to 90 days (storage cost). Set e.g. `retention-days: 7`.

- uses: actions/upload-artifact@v4
  with:
    name: build
    path: dist/
    retention-days: 7

Full guide: how to fix this →

Premium runners (macOS / Windows) · perf-nightly

~0 min/mo

macOS bills ~10x and Windows ~2x a Linux minute. The cost estimate above assumes Linux, so your real spend is higher. Move any job that doesn't need them to `ubuntu-latest`.

jobs:
  build:
    runs-on: ubuntu-latest  # ~10x cheaper than macos-latest

Full guide: how to fix this →

Scheduled workflow runs in forks · perf-nightly

~0 min/mo

The schedule has no repository guard, so forks that enable Actions inherit the cron and burn their own minutes. Gate the job with `if: github.repository == 'owner/repo'`.

jobs:
  nightly:
    if: github.repository == 'owner/repo'
    runs-on: ubuntu-latest

Full guide: how to fix this →

Copy every fix as one block (5 snippets, annotated per workflow)
# Missing dependency cache (pip) (applies to: perf-nightly)
- uses: actions/setup-python@v5
  with:
    python-version: '3.12'
    cache: 'pip'

# No concurrency control (applies to: perf-nightly)
concurrency:
  group: ${{ github.workflow }}-${{ github.ref }}
  cancel-in-progress: true

# Artifacts at default retention (applies to: perf-nightly)
- uses: actions/upload-artifact@v4
  with:
    name: build
    path: dist/
    retention-days: 7

# Premium runners (macOS / Windows) (applies to: perf-nightly)
jobs:
  build:
    runs-on: ubuntu-latest  # ~10x cheaper than macos-latest

# Scheduled workflow runs in forks (applies to: perf-nightly)
jobs:
  nightly:
    if: github.repository == 'owner/repo'
    runs-on: ubuntu-latest

Each snippet is representative. Merge into the named workflow files rather than pasting wholesale.

Add the badge to your README

Live CI-health badge → GitSpider badge

[![GitSpider](https://gitspider.com/badge/nissimdirect/entropic-v2challenger.svg)](https://gitspider.com/scan/nissimdirect/entropic-v2challenger)

Want this on every push?

This scorecard is a one-time snapshot. Install the free GitHub App to track this repo continuously: new regressions caught as they land, trends over time, on your public and private repos. Team adds the offending commit on the PR + Slack alerts.

Install & monitor this repo →

💬 On Team, this same analysis posts automatically to every PR: the regression, and the exact commit that caused it, right where your team already looks. See plans →

Not ready to install? Get this report by email. No spam, unsubscribe anytime.

Share this scorecard: https://gitspider.com/scan/nissimdirect/entropic-v2challenger