Skip to content

Commit

Permalink
Merge pull request #19 from altoo-ag/fixGitHubActions
Browse files Browse the repository at this point in the history
Update github actions
  • Loading branch information
danischroeter authored Sep 26, 2024
2 parents b7438d3 + fe53e0f commit 8c56266
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/fullTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ on:

jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
matrix:
java: [ 11, 17, 21 ]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
java-version: '${{ matrix.java }}'
distribution: 'adopt'
distribution: 'temurin'
- name: Run tests with Pekko 1.0.x and Scala 2.12,2.13,3.3
run: sbt +test +doc
11 changes: 6 additions & 5 deletions .github/workflows/pullCi.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
name: Scala CI

on:
workflow_dispatch:
pull_request:
branches: [ main ]
paths-ignore:
- '**.md'

jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'adopt'
- name: Run tests with Pekko 1.0.x and Scala 2.12,2.13,3.3
distribution: 'temurin'
- name: Run tests with Scala 2.12,2.13,3.3
run: sbt +test

0 comments on commit 8c56266

Please sign in to comment.