Skip to content

Commit c65c946

Browse files
committed
gh: fix icu4c on macos
1 parent 4fb2899 commit c65c946

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/go.yaml

+5-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,11 @@ jobs:
2121
GO: ${{ matrix.go }}
2222
steps:
2323
- if: startsWith(matrix.os, 'macos')
24-
run: brew update
24+
run: |
25+
brew update
26+
# Handle issues with the upgrade to icu4c v76.
27+
[[ -e "$(brew --prefix)/opt/icu4c" ]] || \
28+
brew reinstall icu4c
2529
2630
- uses: actions/setup-go@v2
2731
with:

0 commit comments

Comments
 (0)