Skip to content
Closed
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
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,15 @@ jobs:
- { os: ubuntu-latest, container: '', shell_path: /usr/bin/zsh, label: zsh-5.x-linux }

steps:
# Codecov's uploader builds its file "network" by scanning the workspace git
# tree; without a checkout the workspace is empty and every upload is rejected
# as REPORT_EMPTY ("received the network and no coverage data"). The test suite
# loads the lib via `xsh load`, so this checkout exists ONLY so Codecov can map
# the coverage paths to source. Only the coverage job needs it.
- name: Check out repository (Codecov source mapping)
if: matrix.coverage
uses: actions/checkout@v5

# rockylinux:8 (bash 4.4) is a minimal image — install git first (needed
# to clone xsh), then the tools xsh + the test suite use.
- name: Pre-install git (rockylinux container)
Expand Down
Loading