Skip to content

Commit

Permalink
Renaming + unlimited fetch depth
Browse files Browse the repository at this point in the history
  • Loading branch information
mephenor committed Apr 16, 2024
1 parent c2c7009 commit 0b38315
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/monorepo_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ jobs:
check-changes:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.set-matrix.outputs.affected }}
services: ${{ steps.services-changed.outputs.affected }}
steps:
- uses: actions/checkout@v3

- id: install-typer
run: pip install typer>=0.9.0

- id: set-matrix
- id: services-changed
run: |
echo "affected=$(python3 ./scripts/affected_services.py)" >> $GITHUB_OUTPUT
Expand All @@ -27,15 +27,15 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
service: ${{ fromJson(needs.check-changes.outputs.matrix) }}
service: ${{ fromJson(needs.check-changes.outputs.services) }}
steps:
- uses: actions/checkout@v3
with:
sparse-checkout: |
.github
.lock
.services/${{matrix.service}}
fetch-depth: 2
fetch-depth: 0

- name: update pip
run: python -m pip install --upgrade pip
Expand Down

0 comments on commit 0b38315

Please sign in to comment.