Skip to content

Update cats-effect to 3.7.0 #574

Update cats-effect to 3.7.0

Update cats-effect to 3.7.0 #574

Workflow file for this run

name: CI
on:
push:
branches: ["master"]
tags: ["v*"]
pull_request:
branches: ["master"]
workflow_dispatch:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
scala:
- 3.3.5
- 2.13.16
steps:
- uses: actions/checkout@v3
- uses: coursier/cache-action@v6
- name: Setup Java
uses: actions/setup-java@v4
with:
java-version: "17"
distribution: "temurin"
cache: "sbt"
- name: setup SBT
uses: sbt/setup-sbt@v1
- name: check code ${{ matrix.scala }}
run: sbt ++${{ matrix.scala }} clean check
- name: build ${{ matrix.scala }}
run: sbt ++${{ matrix.scala }} clean coverage test
- name: test coverage
if: success() && matrix.scala != '3.3.5'
env:
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_FLAG_NAME: Scala ${{ matrix.scala }}
run: sbt ++${{ matrix.scala }} coverageReport coverageAggregate coveralls
- name: slack
uses: homoluctus/slatify@master
if: failure() && github.ref == 'refs/heads/master'
with:
type: ${{ job.status }}
job_name: Build
url: ${{ secrets.SLACK_WEBHOOK }}