From 2ff9448236f447fd5742b8b81a42a87e3f9a17e9 Mon Sep 17 00:00:00 2001 From: Vasil Vasilev Date: Wed, 13 Nov 2024 21:54:27 +0100 Subject: [PATCH] [build, github workflow] Quotes maybe? --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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'