Skip to content

Update cats-effect to 3.5.5 #452

Update cats-effect to 3.5.5

Update cats-effect to 3.5.5 #452

Workflow file for this run

---
name: ci
on: # yamllint disable-line rule:truthy
push:
branches:
- main
pull_request:
jobs:
checks:
name: Format and style checks
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
cache: sbt
- run: sbt --client scalafmtCheckAll
- run: sbt --client scalafmtSbtCheck
- run: sbt --client headerCheckAll
- name: yaml-lint
uses: ibiqlik/action-yamllint@v3
test:
name: Compile and test
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
cache: sbt
- run: sbt --client +compile
- run: sbt --client +test