Skip to content

Update http4s-core to 0.23.27 #459

Update http4s-core to 0.23.27

Update http4s-core to 0.23.27 #459

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
scala:
- 3.3.0
- 2.13.8
- 2.12.16
steps:
- uses: actions/checkout@v3
- uses: coursier/cache-action@v6
- name: scala
uses: olafurpg/setup-scala@v11
with:
java-version: 17
- name: build ${{ matrix.scala }}
run: sbt ++${{ matrix.scala }} clean coverage test
- name: test coverageReport coverageAggregate coveralls
if: success()
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: sbt ++${{ matrix.scala }} 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 }}