Update logback-classic to 1.5.10 #137
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: Scala CI | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: Test with Scala ${{ matrix.scala }} and Java ${{ matrix.java }}) | |
strategy: | |
matrix: | |
java: ['temurin:1.11', 'temurin:1.17', 'temurin:1.21'] | |
scala: [ 2.13.15, 3.3.3 ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Compose | |
uses: ndeloof/[email protected] | |
with: | |
legacy: true # will also install in PATH as `docker-compose` | |
- run: docker-compose --version | |
- name: Setup Scala and Java | |
uses: coursier/setup-action@v1 | |
with: | |
jvm: ${{matrix.java}} | |
- name: Start Postgres | |
run: sh ./scripts/launch-postgres.sh | |
- name: Run tests | |
run: sbt ++${{ matrix.scala }} test |