From a8e139c54e3efa91bd07f747d2a45dc25a3c3505 Mon Sep 17 00:00:00 2001 From: Patrick Praegla Date: Tue, 24 Mar 2026 18:46:03 +0100 Subject: [PATCH] Add first draft for macos workflow --- .github/workflows/macos.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/macos.yml diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml new file mode 100644 index 0000000000..7538144c1f --- /dev/null +++ b/.github/workflows/macos.yml @@ -0,0 +1,21 @@ +name: macOS built test + +on: + schedule: + - cron: 3 4 * * 0 + workflow_dispatch: + +jobs: + build-and-test: + name: Build and test 4C on macOS + runs-on: macos-26 + steps: + - name: Install the dependencies + run: | + echo "TODO to install the dependencies" + pwd + ls -l + - name: Build 4C + run: echo "TODO build 4C" + - name: Run tests + run: echo "TODO tests"