diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2020-07-28 18:04:52 +0200 |
---|---|---|
committer | Peter Scheibel <scheibel1@llnl.gov> | 2020-07-29 11:23:34 -0700 |
commit | 3e1661a1832fdd38946f97f46a1a3c74a2fb4965 (patch) | |
tree | c84be6bf7c668ebf1a975abbc5ebbb33fea3c0c7 /.github/workflows/macos_unit_tests.yaml | |
parent | c4f29c63844b6eaf5eae03f6749639f04bf19f72 (diff) | |
download | spack-3e1661a1832fdd38946f97f46a1a3c74a2fb4965.tar.gz spack-3e1661a1832fdd38946f97f46a1a3c74a2fb4965.tar.bz2 spack-3e1661a1832fdd38946f97f46a1a3c74a2fb4965.tar.xz spack-3e1661a1832fdd38946f97f46a1a3c74a2fb4965.zip |
Use "fetch-depth: 0" to retrieve all history from remote
Diffstat (limited to '.github/workflows/macos_unit_tests.yaml')
-rw-r--r-- | .github/workflows/macos_unit_tests.yaml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/macos_unit_tests.yaml b/.github/workflows/macos_unit_tests.yaml index 9a7c12ae5d..f4b55bab86 100644 --- a/.github/workflows/macos_unit_tests.yaml +++ b/.github/workflows/macos_unit_tests.yaml @@ -14,6 +14,8 @@ jobs: runs-on: macos-latest steps: - uses: actions/checkout@v2 + with: + fetch-depth: 0 - uses: actions/setup-python@v2 with: python-version: 3.7 @@ -30,7 +32,7 @@ jobs: - name: Run unit tests run: | git --version - git fetch -u origin develop:develop + . .github/workflows/setup_git.sh . share/spack/setup-env.sh coverage run $(which spack) test coverage combine |