Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use native scala 3 akka artifacts. #299

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update github workflows to latest actions, temurin distribution.
  • Loading branch information
Benjamin Maurer committed Jan 7, 2025
commit 90321f49b1ca076bb5456b6c8fdb78aacce526bb
3 changes: 2 additions & 1 deletion .github/workflows/fullTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
uses: actions/setup-java@v2
with:
java-version: '${{ matrix.java }}'
distribution: 'adopt'
distribution: 'temurin'
cache: 'sbt'
- name: Run tests with Akka 2.6 and Scala 2.12,2.13,3.1
run: sbt +test +doc
13 changes: 6 additions & 7 deletions .github/workflows/pullCi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,12 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 15
uses: actions/setup-java@v2
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '15'
distribution: 'adopt'
java-version: '17'
distribution: 'temurin'
cache: 'sbt'
- name: Run tests with Akka 2.6 and Scala 2.12,2.13,3.0
run: sbt +test
- name: Run tests with Akka 2.5 and Scala 2.13
run: sbt -Dakka.build.version=2.5.32 clean test