Skip to content

Commit

Permalink
Next test
Browse files Browse the repository at this point in the history
  • Loading branch information
mephenor committed May 7, 2024
1 parent d4ed55a commit 52b6217
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/tests_on_pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
with:
filter: tree:0
fetch-depth: 0

- name: Changed Files
Expand All @@ -30,7 +29,7 @@ jobs:
test:
needs: get-changed-services
if: ${{needs.get-changed-services.outputs.services}} != "[]"
if: ${{ needs.get-changed-services.outputs.services != '' }}
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/tests_on_push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
with:
filter: tree:0
fetch-depth: 2

- name: Changed Files
Expand All @@ -33,7 +32,7 @@ jobs:
test:
needs: get-changed-services
if: ${{needs.get-changed-services.outputs.services}} != "[]"
if: ${{ needs.get-changed-services.outputs.services != '' }}
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -47,8 +46,7 @@ jobs:
- name: Checkout ${{matrix.service}}
uses: actions/checkout@v4
with:
filter: tree:0
fetch-depth: 0
fetch-depth: 2

- name: Update pip and pyopenssl
id: pip-update
Expand Down

0 comments on commit 52b6217

Please sign in to comment.