Add .gitea/workflows/farm-check.yaml
All checks were successful
Farm Connectivity Check / check-linux (push) Successful in 0s
Cross-Platform Build Check / test-mac-capabilities (push) Successful in 1s
Farm Connectivity Check / check-windows-capability (push) Successful in 0s
Farm Connectivity Check / check-mac (push) Successful in 0s

This commit is contained in:
2026-01-04 13:45:47 -08:00
parent fc26e38aad
commit 7ef45e5941

View File

@@ -0,0 +1,24 @@
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