Skip to content

Commit

Permalink
Update build.yml to fix coverage upload on Mac and Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
ascopes authored Nov 12, 2023
1 parent 65d1a81 commit 48193d6
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,20 @@ jobs:
java-version: [11, 21]

steps:
- name: Install system dependencies
shell: bash
run: |-
case "${{ matrix.os-name }}" in
windows-*)
# Ensure shasum is available.
choco install psutils
;;
macos-*)
# Upgrade bash, ensure shasum is available.
brew install bash coreutils
;;
esac
- name: Checkout
uses: actions/checkout@v4

Expand Down

0 comments on commit 48193d6

Please sign in to comment.