Skip to content

Commit 0c3e2b1

Browse files
committed
ci(refactor): General improvements
1 parent 12d369b commit 0c3e2b1

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/build_tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Evaluate if tests should be built
3838
id: check-build
3939
run: |
40-
cache_exists=${{ steps.cache-build-binaries.outputs.cache-hit == 'true' || false }}
40+
cache_exists=${{ steps.cache-build-binaries.outputs.cache-hit == 'true' }}
4141
enabled=true
4242
4343
if [[ $cache_exists == 'true' ]]; then

.github/workflows/hw.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- name: Evaluate if tests should be run
4040
id: check-tests
4141
run: |
42-
cache_exists=${{ steps.cache-results.outputs.cache-hit == 'true' || false }}
42+
cache_exists=${{ steps.cache-results.outputs.cache-hit == 'true' }}
4343
enabled=true
4444
4545
if [[ $cache_exists == 'true' ]]; then

.github/workflows/qemu.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Evaluate if tests should be run
3636
id: check-tests
3737
run: |
38-
cache_exists=${{ steps.get-cache-results.outputs.cache-hit == 'true' || false }}
38+
cache_exists=${{ steps.get-cache-results.outputs.cache-hit == 'true' }}
3939
enabled=true
4040
4141
if [[ $cache_exists == 'true' ]]; then

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Unit Tests
1+
name: Runtime Tests
22

33
on:
44
workflow_dispatch:

.github/workflows/wokwi.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
- name: Evaluate if tests should be run
4545
id: check-tests
4646
run: |
47-
cache_exists=${{ steps.get-cache-results.outputs.cache-hit == 'true' || false }}
47+
cache_exists=${{ steps.get-cache-results.outputs.cache-hit == 'true' }}
4848
enabled=true
4949
5050
if [[ $cache_exists == 'true' ]]; then

0 commit comments

Comments
 (0)