Skip to content

Commit

Permalink
Merge pull request #20 from altoo-ag/update-actions
Browse files Browse the repository at this point in the history
Updates actions image
  • Loading branch information
nvollmar authored Oct 14, 2024
2 parents 6a04b1f + 27f4263 commit 47d0b1c
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 4 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/fullTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,25 @@ on:

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
strategy:
matrix:
java: [ 11, 17, 21 ]
steps:
- uses: actions/checkout@v4
- name: Checkout
uses: actions/checkout@v4

- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: '${{ matrix.java }}'
distribution: 'temurin'

- name: Install sbt
uses: sbt/setup-sbt@v1

- name: Cache Coursier cache
uses: coursier/cache-action@v6

- name: Run tests with Pekko 1.0.x and Scala 2.12,2.13,3.3
run: sbt +test +doc
13 changes: 11 additions & 2 deletions .github/workflows/pullCi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,22 @@ on:

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Checkout
uses: actions/checkout@v4

- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'

- name: Install sbt
uses: sbt/setup-sbt@v1

- name: Cache Coursier cache
uses: coursier/cache-action@v6

- name: Run tests with Scala 2.12,2.13,3.3
run: sbt +test

0 comments on commit 47d0b1c

Please sign in to comment.