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