From 7ef45e5941ef45713269f11cd37c890f05a3b159 Mon Sep 17 00:00:00 2001 From: such-gitea Date: Sun, 4 Jan 2026 13:45:47 -0800 Subject: [PATCH] Add .gitea/workflows/farm-check.yaml --- .gitea/workflows/farm-check.yaml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .gitea/workflows/farm-check.yaml diff --git a/.gitea/workflows/farm-check.yaml b/.gitea/workflows/farm-check.yaml new file mode 100644 index 0000000..3969a5e --- /dev/null +++ b/.gitea/workflows/farm-check.yaml @@ -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 \ No newline at end of file