Skip to content

update zio and sbt versions #31

update zio and sbt versions

update zio and sbt versions #31

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
paths-ignore:
- 'docs/**'
- '*.md'
- 'mkdocs.yml'
- 'requirements.txt'
- 'netlify.toml'
- '**/release.yml'
- '**/docs.yml'
- '.gitignore'
- '**/Examples.scala'
pull_request:
branches: [ main ]
paths-ignore:
- 'docs/**'
- '*.md'
- 'mkdocs.yml'
- 'requirements.txt'
- 'netlify.toml'
- '**/release.yml'
- '**/docs.yml'
- '.gitignore'
- '**/Examples.scala'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
key: ${{ runner.os }}-scala
path: |
~/.ivy2/cache
~/.sbt
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'adopt'
- name: Compile and run tests
run: sbt ";clean ;+test"