Update slick, slick-hikaricp to 3.5.1 #1005
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: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
include: | |
- enable-zio-http: yes | |
enable-akka-http: no | |
enable-quill: yes | |
enable-slick: no | |
- enable-zio-http: yes | |
enable-akka-http: no | |
enable-quill: no | |
enable-slick: yes | |
- enable-zio-http: no | |
enable-akka-http: yes | |
enable-quill: yes | |
enable-slick: no | |
- enable-zio-http: no | |
enable-akka-http: yes | |
enable-quill: no | |
enable-slick: yes | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup JDK (temurin@17) | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Cache sbt | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.sbt | |
~/.ivy2/cache | |
~/.coursier/cache/v1 | |
~/.cache/coursier/v1 | |
~/AppData/Local/Coursier/Cache/v1 | |
~/Library/Caches/Coursier/v1 | |
key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} | |
- name: Run | enable_zio_http=${{ matrix.enable-zio-http}}, enable_akka_http=${{ matrix.enable-akka-http }}, enable_quill=${{ matrix.enable-quill }}, enable_slick=${{ matrix.enable-slick }} | |
run: sbt ';set g8Properties in g8 in Test ~= { _ ++ Map("enable_zio_http" -> "${{ matrix.enable-zio-http }}", "enable_akka_http" -> "${{ matrix.enable-akka-http }}", "enable_quill" -> "${{ matrix.enable-quill }}", "enable_slick" -> "${{ matrix.enable-slick }}") }; test' | |