File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 10
10
description : ' Comma-separated list of dependencies to test (Format: dep1=1.0,dep2=2.0).
11
11
No input (default) will run the the upper-bound dependencies file.'
12
12
required : false
13
- default : ' '
13
+ default : " "
14
14
schedule :
15
15
- cron : ' 0 1 * * *' # Nightly at 1am
16
16
26
26
java-version : ' 21'
27
27
distribution : ' temurin'
28
28
cache : maven
29
- - run : echo " DEPENDENCIES_LIST=${{ github.event.inputs.dependencies-list || ' ' }}" >> " $GITHUB_ENV"
29
+ - run : echo ' DEPENDENCIES_LIST=${{ github.event.inputs.dependencies-list || "" }}' >> $GITHUB_ENV
30
30
# Set up the for the CI
31
31
- name : Install sdk-platform-java's modules
32
32
# gapic-generator-java requires Java 8 and is irrelevant for this CI
36
36
- name : Perform Dependency Compatibility Testing
37
37
shell : bash
38
38
run : |
39
- if [[ ${{ env.DEPENDENCIES_LIST }} == ' ' ]]; then
39
+ if [[ ${{ env.DEPENDENCIES_LIST }} == "" ]]; then
40
40
./.github/scripts/test_dependency_compatibility.sh -f dependencies.txt
41
41
else
42
42
./.github/scripts/test_dependency_compatibility.sh -l ${{ env.DEPENDENCIES_LIST }}
58
58
- name : Perform Dependency Compatibility Testing (Showcase)
59
59
shell : bash
60
60
run : |
61
- if [[ ${{ env.DEPENDENCIES_LIST }} == ' ' ]]; then
61
+ if [[ ${{ env.DEPENDENCIES_LIST }} == "" ]]; then
62
62
../.github/scripts/test_dependency_compatibility.sh -f ../dependencies.txt
63
63
else
64
64
../.github/scripts/test_dependency_compatibility.sh -l ${{ env.DEPENDENCIES_LIST }}
You can’t perform that action at this time.
0 commit comments