Skip to content

Conversation

Sajjon
Copy link
Owner

@Sajjon Sajjon commented Jul 7, 2025

I used a non existent CI step.

@Sajjon Sajjon requested a review from Copilot July 7, 2025 11:17
Copy link

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR replaces the non-existent taiki-e/setup-cross CI step with a cache-based install of the cross binary.

  • Removes the taiki-e/setup-cross action
  • Adds cache restore and conditional install steps for cross
Comments suppressed due to low confidence (3)

.github/workflows/release.yml:118

  • The indentation of the new steps doesn’t match the surrounding steps under jobs.*.steps, which will cause the YAML to fail parsing. Align these - name: lines with the existing steps (e.g., use the same number of spaces).
      - name: Restore cross cache

.github/workflows/release.yml:123

  • [nitpick] The cache key only includes the Cargo.lock hash. If you ever bump the cross version, the cache won’t be invalidated. Consider adding a version identifier (e.g., -cross-v1) to the key so updates to cross bust the cache.
          key: ${{ runner.os }}-cross-${{ hashFiles('**/Cargo.lock') }}

.github/workflows/release.yml:126

  • [nitpick] For reproducible installs, include the --locked flag (i.e., cargo install --locked cross) so it respects Cargo.lock and avoids unexpected version changes.
        run: cargo install cross

Copy link

codecov bot commented Jul 7, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 96.90%. Comparing base (44eb81b) to head (40a131c).
Report is 2 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main      #16   +/-   ##
=======================================
  Coverage   96.90%   96.90%           
=======================================
  Files          76       76           
  Lines        1650     1650           
=======================================
  Hits         1599     1599           
  Misses         51       51           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@Sajjon Sajjon merged commit 6155df3 into main Jul 7, 2025
7 checks passed
@Sajjon Sajjon deleted the fix_release branch July 7, 2025 11:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant