Update zio-prelude to 1.0.0-RC35 #97
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 | |
env: | |
JDK_JAVA_OPTIONS: -XX:+PrintCommandLineFlags -Xmx6G -Xss4M # JDK_JAVA_OPTIONS is _the_ env. variable to use for modern Java | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: 'sbt' | |
check-latest: true | |
- name: Cache scala dependencies | |
uses: coursier/cache-action@v6 | |
id: coursier-cache | |
- name: Fetch Dependencies | |
if: steps.coursier-cache.outputs.cache-hit-coursier != 'true' | |
run: sbt +update | |
- name: Run tests | |
run: sbt test |