name: Farm Connectivity Check on: [push] jobs: check-mac: runs-on: macos-latest steps: - run: echo "Hello from the Mac Mini! I build iOS and macOS." check-linux: runs-on: ubuntu-latest steps: - run: | echo "Hello from the Linux Beast! I build Linux apps." echo "Checking for Qt..." qmake --version check-windows-capability: runs-on: windows-latest steps: - run: | echo "Hello from the Linux Beast (pretending to be Windows)!" echo "Checking for MinGW (Windows Compiler)..." x86_64-w64-mingw32-g++ --version