ci: Fix macOS qt4 detection

Need to link the qt4 install so it's in PATH.
Also need to use a symlink to fix breakage in the Tap.
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index 8b60b75..56680c4 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -96,6 +96,9 @@
     - run: brew install pkg-config ninja gcc
     - run: brew tap cartr/qt4
     - run: brew install qt@4
+    - run: brew link qt@4
+      # qt4 tap seems to be broken
+    - run: ln -sfn /usr/local/Cellar/qt@4/4.8.7_6.reinstall /usr/local/Cellar/qt@4/4.8.7_6
     - run: meson setup "test cases/frameworks/4 qt" build -Drequired=qt4
     - run: meson compile -C build
     - uses: actions/upload-artifact@v1