Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,30 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Post Coverage Started Comment (Linux)
if: startsWith(matrix.os, 'ubuntu')
uses: marocchino/sticky-pull-request-comment@v2
with:
header: coverage-linux
message: |
## Test Coverage Report (Linux)

:hourglass_flowing_sand: **Coverage analysis in progress...**

This comment will be updated with results when the analysis completes.

- name: Post Coverage Started Comment (Windows)
if: startsWith(matrix.os, 'windows')
uses: marocchino/sticky-pull-request-comment@v2
with:
header: coverage-windows
message: |
## Test Coverage Report (Windows)

:hourglass_flowing_sand: **Coverage analysis in progress...**

This comment will be updated with results when the analysis completes.

- name: Set Python to PATH
uses: actions/setup-python@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion crates/pet-pyenv/tests/pyenv_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ fn gets_pyenv_manager_version_without_env_vars() {
".pyenv",
"pyenv-win",
"bin",
"pyenv.exe",
"pyenv.bat",
]),
version: Some("3.5.0".to_string()),
tool: EnvManagerType::Pyenv,
Expand Down
Loading