Skip to content

Update zio, zio-streams, zio-test, ... to 2.0.22 #220

Update zio, zio-streams, zio-test, ... to 2.0.22

Update zio, zio-streams, zio-test, ... to 2.0.22 #220

Workflow file for this run

name: Scala CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
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 tests
run: sbt test