#760 Migrate from Akka to Pekko #15
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pull Request | |
'on': | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
strategy: | |
matrix: | |
scala-version: [2.12.15, 2.13.7] | |
runs-on: ubuntu-latest | |
env: | |
ACTION_JDK_VERSION: openjdk8 | |
SCALA_VERSION: ${{ matrix.scala-version }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup JDK | |
uses: olafurpg/setup-scala@v10 | |
with: | |
java-version: [email protected] | |
- run: sbt ++$SCALA_VERSION clean coverage test | |
- run: sbt ++$SCALA_VERSION coverageReport | |
- run: sbt ++$SCALA_VERSION coverageAggregate |