From 5012c1e77163df16bfc77d6516343618654b1221 Mon Sep 17 00:00:00 2001 From: Matthew Andres Moreno Date: Fri, 8 Dec 2023 11:59:28 -0500 Subject: [PATCH] Try manually cleaning after mac clone --- .github/workflows/CI.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 820e95294a..70ef93d833 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -26,16 +26,17 @@ jobs: - uses: actions/checkout@v3 with: submodules: 'recursive' - - run: git --version - - run: brew install coreutils findutils gnu-sed gawk grep rename sphinx-doc git + - run: | + git status --ignored + git clean -fxd . + git status --ignored + - run: brew install coreutils findutils gnu-sed gawk grep rename sphinx-doc # 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: echo $PATH - run: ./ci/test_tidy.sh test: name: Tests