We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e748f8 commit 033dc92Copy full SHA for 033dc92
.github/workflows/tests_hw.yml
@@ -37,7 +37,9 @@ jobs:
37
38
- name: Evaluate if tests should be run
39
id: check-tests
40
+ shell: bash
41
run: |
42
+ #!/bin/bash
43
cache_exists=${{ steps.cache-results.outputs.cache-hit == 'true' }}
44
enabled=true
45
@@ -58,6 +60,9 @@ jobs:
58
60
- name: Checkout user repository
59
61
if: ${{ steps.check-tests.outputs.enabled == 'true' }}
62
uses: actions/checkout@v4
63
+ with:
64
+ sparse-checkout: |
65
+ *
66
67
- name: List files recursively
68
0 commit comments