From ae8a781197555836dd71070dee9228520c400b06 Mon Sep 17 00:00:00 2001 From: Matthew Andres Moreno Date: Fri, 8 Dec 2023 11:37:54 -0500 Subject: [PATCH] Update mac git for bugfix? --- .github/workflows/CI.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 0c0aa9b4c6..86e285ca88 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -26,9 +26,16 @@ jobs: - uses: actions/checkout@v2 with: submodules: 'recursive' - - run: brew install coreutils findutils gnu-sed gawk grep rename sphinx-doc + - run: git --version + - run: brew install coreutils findutils gnu-sed gawk grep rename sphinx-doc git # adapted from https://stackoverflow.com/a/42878119 - run: brew link sphinx-doc --force + # updates PATH to use Homebrew-installed tools first + # see https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#adding-a-system-path + - run: echo "/usr/local/bin:$PATH" > $GITHUB_PATH + - run: | + echo $PATH + git --version - run: ./ci/test_tidy.sh test: name: Tests