We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e648b5b commit 8e748f8Copy full SHA for 8e748f8
.github/workflows/tests_hw.yml
@@ -41,19 +41,19 @@ jobs:
41
cache_exists=${{ steps.cache-results.outputs.cache-hit == 'true' }}
42
enabled=true
43
44
- if [[ $cache_exists == 'true' ]]; then
+ if [[ $cache_exists == true ]]; then
45
echo "Already ran, skipping"
46
enabled=false
47
fi
48
49
echo "enabled=$enabled" >> $GITHUB_OUTPUT
50
51
- - name: Update git submodules
52
- if: ${{ steps.check-tests.outputs.enabled == 'true' }}
53
- run: |
54
- apt update
55
- apt install -y git
56
- git --version
+ # - name: Update git submodules
+ # if: ${{ steps.check-tests.outputs.enabled == 'true' }}
+ # run: |
+ # apt update
+ # apt install -y git
+ # git --version
57
58
- name: Checkout user repository
59
if: ${{ steps.check-tests.outputs.enabled == 'true' }}
0 commit comments