Skip to content

Update http4s-circe, http4s-dsl, ... to 0.23.22 #166

Update http4s-circe, http4s-dsl, ... to 0.23.22

Update http4s-circe, http4s-dsl, ... to 0.23.22 #166

Workflow file for this run

name: CI
on:
pull_request:
branches:
- '*'
push:
branches:
- main
jobs:
build:
name: Test
strategy:
matrix:
scala:
- 2.13.10
java:
- corretto@1.11
- corretto@1.17
os:
- ubuntu-22.04
runs-on: ${{ matrix.os }}
steps:
- name: Branch Checkout
uses: actions/checkout@v2.5.0
with:
fetch-depth: 0
- name: Install Java And Sbt
uses: olafurpg/setup-scala@v13
with:
java-version: ${{ matrix.java }}
- name: Cache
uses: actions/cache@v2
with:
path: |
$HOME/.cache/coursier
$HOME/.ivy2/cache
$HOME/.sbt/boot/
$HOME/.sbt
lib_managed
target
project/target
key: ${{ runner.os }}-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}
- name: Test (${{ matrix.scala }}, ${{ matrix.java }})
run: sbt ++${{ matrix.scala }} fullTest
- name: Upload To Codecov
uses: codecov/codecov-action@v2