From 06e685da8cf1b5d5ad28a278c974f8ffa8278462 Mon Sep 17 00:00:00 2001 From: Yasmin Teles Date: Sun, 10 Mar 2024 14:10:11 -0300 Subject: [PATCH] fixup! fixup! fixup! fix: remove default gitconfig at macOS --- .github/workflows/health-check.yml | 42 +++++++++++++++--------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/.github/workflows/health-check.yml b/.github/workflows/health-check.yml index 0a94fa5..49ac4bb 100644 --- a/.github/workflows/health-check.yml +++ b/.github/workflows/health-check.yml @@ -37,30 +37,30 @@ jobs: run: shell: ${{ matrix.shell }} steps: - - name: Clean up linuxOS - if: runner.os != 'macOS' - run: sudo apt-get install build-essential + # - name: Clean up linuxOS + # if: runner.os != 'macOS' + # run: sudo apt-get install build-essential - - name: Cleanup macOS - if: runner.os == 'macOS' - run: | - sudo rm -rf /Applications/Xcode.app \ - /Library/Developer/CommandLineTools - sudo xcode-select --reset + # - name: Cleanup macOS + # if: runner.os == 'macOS' + # run: | + # sudo rm -rf /Applications/Xcode.app \ + # /Library/Developer/CommandLineTools + # sudo xcode-select --reset - - name: Install Homebrew - run: /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" &>/dev/null - env: - NONINTERACTIVE: 1 + # - name: Install Homebrew + # run: /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" &>/dev/null + # env: + # NONINTERACTIVE: 1 - - name: Set up Homebrew PATH - run: | - if [[ "${{ runner.os }}" = "macOS" ]] - then - echo "/usr/local/bin:/usr/bin:/bin" >> "${GITHUB_PATH}" - else - echo "/home/linuxbrew/.linuxbrew/bin:/usr/bin:/bin" >> "${GITHUB_PATH}" - fi + # - name: Set up Homebrew PATH + # run: | + # if [[ "${{ runner.os }}" = "macOS" ]] + # then + # echo "/usr/local/bin:/usr/bin:/bin" >> "${GITHUB_PATH}" + # else + # echo "/home/linuxbrew/.linuxbrew/bin:/usr/bin:/bin" >> "${GITHUB_PATH}" + # fi - name: Check Homebrew run: brew --config