Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
Two other workflows also needed updating so that the git checkout is now shallow.
  • Loading branch information
gmloose committed Apr 25, 2024
1 parent 0d4380c commit f881b81
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4

with:
# Needed for `setuptools-scm`
fetch-depth: 0

- name: Build container
run: docker build . -t ${{ matrix.dist }} -f .github/workflows/${{ matrix.dist }}.docker

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ jobs:
steps:
- name: checkout
uses: actions/checkout@v4
with:
# Needed for `setuptools-scm`
fetch-depth: 0

- name: install homebrew packages
run: |
Expand Down

0 comments on commit f881b81

Please sign in to comment.