CI: enable QUIC for LibreSSL builds

since LibreSSL-3.6.x supports QUIC, let us enable it
diff --git a/.github/matrix.py b/.github/matrix.py
index ea4c79f..cde2bbe 100755
--- a/.github/matrix.py
+++ b/.github/matrix.py
@@ -134,7 +134,7 @@
 #        "BORINGSSL=yes",
     ]:
         flags = ["USE_OPENSSL=1"]
-        if ssl == "BORINGSSL=yes" or ssl == "QUICTLS=yes":
+        if ssl == "BORINGSSL=yes" or ssl == "QUICTLS=yes" or "LIBRESSL" in ssl:
             flags.append("USE_QUIC=1")
         if ssl != "stock":
             flags.append("SSL_LIB=${HOME}/opt/lib")