We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7658c06 commit 294c2ceCopy full SHA for 294c2ce
.github/workflows/go.yaml
@@ -21,7 +21,11 @@ jobs:
21
GO: ${{ matrix.go }}
22
steps:
23
- if: startsWith(matrix.os, 'macos')
24
- run: brew update
+ run: |
25
+ brew update
26
+ # Handle issues with the upgrade to icu4c v76.
27
+ [[ -e "$(brew --prefix)/opt/icu4c" ]] || \
28
+ brew reinstall icu4c
29
30
- uses: actions/setup-go@v2
31
with:
0 commit comments