We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e08e13 commit 1ab31c0Copy full SHA for 1ab31c0
.github/workflows/unit_tests.yml
@@ -30,6 +30,12 @@ jobs:
30
run: |
31
brew install mysql
32
PATH=$PATH:/usr/local/mysql/bin
33
+ - name: Work around Homebrew MySQL being broken
34
+ # See https://github.com/Homebrew/homebrew-core/issues/130258 for more details.
35
+ if: startsWith(matrix.os, 'macOS')
36
+ run: |
37
+ brew install zlib
38
+ ln -sv $(brew --prefix zlib)/lib/libz.dylib $(brew --prefix)/lib/libzlib.dylib
39
- name: Upgrade pip version
40
41
pip install --upgrade pip
0 commit comments