@@ -9,9 +9,9 @@ name: Continuous Integration
99
1010on :
1111 pull_request :
12- branches : ['*']
12+ branches : ['** ']
1313 push :
14- branches : ['*']
14+ branches : ['** ']
1515 tags : [v*]
1616
1717env :
2323 strategy :
2424 matrix :
2525 os : [ubuntu-latest]
26- scala : [2.13.6, 2.12.13 , 3.0.0-RC1, 3.0.0-RC2]
26+ scala : [2.13.6, 2.12.14 , 3.0.0-RC1, 3.0.0-RC2]
27272828 runs-on : ${{ matrix.os }}
2929 steps :
@@ -50,10 +50,10 @@ jobs:
5050 key : ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}
5151
5252 - name : Check that workflows are up to date
53- run : sbt ++${{ matrix.scala }} githubWorkflowCheck
53+ run : sbt --client ' ++${{ matrix.scala }}; githubWorkflowCheck'
5454
5555 - name : Build project
56- run : sbt ++${{ matrix.scala }} test
56+ run : sbt --client ' ++${{ matrix.scala }}; test'
5757
5858 - name : Compress target directories
5959 run : tar cf targets.tar target core/js/target core/jvm/target project/target
@@ -107,12 +107,12 @@ jobs:
107107 tar xf targets.tar
108108 rm targets.tar
109109
110- - name : Download target directories (2.12.13 )
110+ - name : Download target directories (2.12.14 )
111111 uses : actions/download-artifact@v2
112112 with :
113- name : target-${{ matrix.os }}-2.12.13 -${{ matrix.java }}
113+ name : target-${{ matrix.os }}-2.12.14 -${{ matrix.java }}
114114
115- - name : Inflate target directories (2.12.13 )
115+ - name : Inflate target directories (2.12.14 )
116116 run : |
117117 tar xf targets.tar
118118 rm targets.tar
@@ -142,4 +142,4 @@ jobs:
142142 PGP_SECRET : ${{ secrets.PGP_SECRET }}
143143 SONATYPE_PASSWORD : ${{ secrets.SONATYPE_PASSWORD }}
144144 SONATYPE_USERNAME : ${{ secrets.SONATYPE_USERNAME }}
145- run : sbt ++${{ matrix.scala }} ci-release
145+ run : sbt --client ' ++${{ matrix.scala }}; ci-release'
0 commit comments