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 1010 description : ' Comma-separated list of dependencies to test (Format: dep1=1.0,dep2=2.0).
1111 No input (default) will run the the upper-bound dependencies file.'
1212 required : false
13- default : ' '
13+ default : " "
1414 schedule :
1515 - cron : ' 0 1 * * *' # Nightly at 1am
1616
2626 java-version : ' 21'
2727 distribution : ' temurin'
2828 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
3030 # Set up the for the CI
3131 - name : Install sdk-platform-java's modules
3232 # gapic-generator-java requires Java 8 and is irrelevant for this CI
3636 - name : Perform Dependency Compatibility Testing
3737 shell : bash
3838 run : |
39- if [[ ${{ env.DEPENDENCIES_LIST }} == ' ' ]]; then
39+ if [[ ${{ env.DEPENDENCIES_LIST }} == "" ]]; then
4040 ./.github/scripts/test_dependency_compatibility.sh -f dependencies.txt
4141 else
4242 ./.github/scripts/test_dependency_compatibility.sh -l ${{ env.DEPENDENCIES_LIST }}
5858 - name : Perform Dependency Compatibility Testing (Showcase)
5959 shell : bash
6060 run : |
61- if [[ ${{ env.DEPENDENCIES_LIST }} == ' ' ]]; then
61+ if [[ ${{ env.DEPENDENCIES_LIST }} == "" ]]; then
6262 ../.github/scripts/test_dependency_compatibility.sh -f ../dependencies.txt
6363 else
6464 ../.github/scripts/test_dependency_compatibility.sh -l ${{ env.DEPENDENCIES_LIST }}
You can’t perform that action at this time.
0 commit comments