diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8f4de35d9a9..719d884639a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,10 +19,10 @@ jobs: 17 - uses: coursier/cache-action@v6 - name: Compile and package - run: sbt clean packageArtifact Test/compile + run: sbt 'clean' 'packageArtifact' 'Test/compile' - name: Run internationalization bundle tests - run: sbt runJUnit5Tests + run: sbt 'runJUnit5Tests' - name: Run typechecker tests - run: sbt runTypeInferenceTests + run: sbt 'runTypeInferenceTests' - name: Run assorted tests - run: sbt runFastTests + run: sbt 'runFastTests'