Skip to content
Merged
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
10 changes: 2 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,11 @@ jobs:
- name: Install greadlink
if: startsWith(runner.os, 'macOS')
run: brew install coreutils
- name: Install parallel
if: startsWith(runner.os, 'macOS')
run: |
brew install parallel
which parallel # Verify installation
- name: Test code
run: test/run
env:
# Ubuntu runners ship GNU parallel, causing --tap + --jobs count mismatches.
# Force single-threaded on Linux; let macOS use parallel (installed above).
TEST_JOBS: ${{ runner.os == 'Linux' && '1' || 'detect' }}
# --tap + --jobs causes TAP plan count mismatches on both Linux and macOS.
TEST_JOBS: 1

build-docs:
runs-on: ubuntu-latest
Expand Down
Loading