Skip to content

Update scala-library to 2.13.15 #658

Update scala-library to 2.13.15

Update scala-library to 2.13.15 #658

Workflow file for this run

name: CI
on:
pull_request:
push:
schedule:
- cron: '0 3 * * 2'
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
matrix:
include:
- java: 8
- java: 21
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@8df1039502a15bceb9433410b1a100fbe190c53b # v4.5.0
with:
java-version: ${{matrix.java}}
distribution: adopt
- uses: coursier/cache-action@v6
- run: |
set -eux
case "${{ matrix.java }}" in
21)
sbt -v '++ 2.12.x' test '++ 2.13.x' test '++ 3.x' test
;;
*)
sbt -v "+ Test/compile" checkScalariform "+ test"
esac