File tree 5 files changed +6
-6
lines changed 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ concurrency:
18
18
19
19
jobs :
20
20
build-tests :
21
- # name: Build ${{ inputs.type }} tests for ${{ inputs.chip }}
21
+ name : Build ${{ inputs.type }} tests for ${{ inputs.chip }}
22
22
runs-on : ubuntu-latest
23
23
env :
24
24
id : ${{ github.event.pull_request.number || github.ref }}-${{ github.event.pull_request.head.sha || github.sha }}-${{ inputs.chip }}-${{ inputs.type }}
37
37
- name : Evaluate if tests should be built
38
38
id : check-build
39
39
run : |
40
- cache_exists=${{ steps.cache-build-binaries.outputs.cache-hit == 'true' || false }}
40
+ cache_exists=${{ steps.cache-build-binaries.outputs.cache-hit == 'true' }}
41
41
enabled=true
42
42
43
43
if [[ $cache_exists == 'true' ]]; then
Original file line number Diff line number Diff line change 39
39
- name : Evaluate if tests should be run
40
40
id : check-tests
41
41
run : |
42
- cache_exists=${{ steps.cache-results.outputs.cache-hit == 'true' || false }}
42
+ cache_exists=${{ steps.cache-results.outputs.cache-hit == 'true' }}
43
43
enabled=true
44
44
45
45
if [[ $cache_exists == 'true' ]]; then
Original file line number Diff line number Diff line change 35
35
- name : Evaluate if tests should be run
36
36
id : check-tests
37
37
run : |
38
- cache_exists=${{ steps.get-cache-results.outputs.cache-hit == 'true' || false }}
38
+ cache_exists=${{ steps.get-cache-results.outputs.cache-hit == 'true' }}
39
39
enabled=true
40
40
41
41
if [[ $cache_exists == 'true' ]]; then
Original file line number Diff line number Diff line change 1
- name : Pytest
1
+ name : Runtime Tests
2
2
3
3
on :
4
4
workflow_dispatch :
Original file line number Diff line number Diff line change 44
44
- name : Evaluate if tests should be run
45
45
id : check-tests
46
46
run : |
47
- cache_exists=${{ steps.get-cache-results.outputs.cache-hit == 'true' || false }}
47
+ cache_exists=${{ steps.get-cache-results.outputs.cache-hit == 'true' }}
48
48
enabled=true
49
49
50
50
if [[ $cache_exists == 'true' ]]; then
You can’t perform that action at this time.
0 commit comments