Skip to content

Update http4s-client, http4s-ember-client, ... to 0.23.27 #292

Update http4s-client, http4s-ember-client, ... to 0.23.27

Update http4s-client, http4s-ember-client, ... to 0.23.27 #292

Workflow file for this run

name: Continuous Integration
on:
pull_request:
branches: ['**']
push:
branches: ['main']
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout current branch
uses: actions/checkout@v4
- name: Setup JVM
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 21
cache: sbt
- name: Build project
run: sbt --client compile
test:
runs-on: ubuntu-latest
steps:
- name: Checkout current branch
uses: actions/checkout@v4
- name: Setup JVM
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 21
cache: sbt
- name: Test project
run: sbt --client test
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout current branch
uses: actions/checkout@v4
- name: Setup JVM
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 21
cache: sbt
- name: Check Formatting
run: sbt --client lintCheck