Skip to content

Update cats-effect, cats-effect-kernel to 3.5.6 #160

Update cats-effect, cats-effect-kernel to 3.5.6

Update cats-effect, cats-effect-kernel to 3.5.6 #160

Workflow file for this run

name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Run tests
run: sbt coverage +test
- name: Coverage report
run: sbt coverageReport
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Formatting
run: sbt scalafmtSbtCheck scalafmtCheck test:scalafmtCheck