diff --git a/.github/workflows/check-build-test.yml b/.github/workflows/check-build-test.yml index 066bb0f65..06c9695ea 100644 --- a/.github/workflows/check-build-test.yml +++ b/.github/workflows/check-build-test.yml @@ -116,16 +116,17 @@ jobs: # Run locally with: sbt verifyDocs run: sbt docs/makeSite - tests: + test: + name: Build and Test runs-on: ubuntu-22.04 needs: [check-code-style, check-code-compilation, check-docs] strategy: fail-fast: false matrix: include: - - { name: "Scala 2.13, JDK 11", scalaVersion: '2.13', java-version: 'temurin:1.11', sbt-opts: '-J-XX:+UnlockExperimentalVMOptions -J-XX:+UseJVMCICompiler' } - - { name: "Scala 2.13, JDK 21", scalaVersion: '2.13', java-version: 'temurin:1.21', sbt-opts: '' } - - { name: "Scala 3.3, JDK 21", scalaVersion: '3.3', java-version: 'temurin:1.21', sbt-opts: '' } + - { name: "Scala 2.13, JDK 11", scala-version: '2.13', java-version: 'temurin:1.11', sbt-opts: '-J-XX:+UnlockExperimentalVMOptions -J-XX:+UseJVMCICompiler' } + - { name: "Scala 2.13, JDK 21", scala-version: '2.13', java-version: 'temurin:1.21', sbt-opts: '' } + - { name: "Scala 3.3, JDK 21", scala-version: '3.3', java-version: 'temurin:1.21', sbt-opts: '' } steps: - name: Checkout # https://github.com/actions/checkout/releases @@ -159,7 +160,7 @@ jobs: if: ${{ failure() }} run: find . -name "*.log" -exec ./scripts/cat-log.sh {} \; - integration-tests: + integration-test: name: Integration tests needs: [check-code-style, check-code-compilation, check-docs] runs-on: ubuntu-22.04