From 52c1fcffca4cfc5997e825cc2986ae3b50d47585 Mon Sep 17 00:00:00 2001 From: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> Date: Sun, 25 Aug 2024 20:28:03 +1000 Subject: [PATCH] Enable macOS dev mode in CI to speedup CI Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> --- .github/actions/just-setup/action.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/actions/just-setup/action.yml b/.github/actions/just-setup/action.yml index 6ab5176f..18b95f73 100644 --- a/.github/actions/just-setup/action.yml +++ b/.github/actions/just-setup/action.yml @@ -18,6 +18,9 @@ inputs: runs: using: composite steps: + - name: Enable macOS developer mode for better performance + run: sudo spctl developer-mode enable-terminal + if: runner.os == 'macOS' - name: Add just to tools to install run: echo "tools=just" >>"$GITHUB_ENV" shell: bash