Skip to content

Commit

Permalink
Smaller diff
Browse files Browse the repository at this point in the history
  • Loading branch information
ennru committed Aug 29, 2024
1 parent da30c3a commit 67fd24d
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/check-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 67fd24d

Please sign in to comment.