Skip to content

Call close() on closeable ClientHttpResponse within BufferingClientHttpResponseWrapper.java #3483

Call close() on closeable ClientHttpResponse within BufferingClientHttpResponseWrapper.java

Call close() on closeable ClientHttpResponse within BufferingClientHttpResponseWrapper.java #3483

Workflow file for this run

name: build
on:
pull_request:
branches:
- main
push:
branches:
- main
schedule:
- cron: "0 6 * * *"
env:
# https://github.com/actions/virtual-environments/issues/1499#issuecomment-689467080
MAVEN_OPTS: >-
-Dhttp.keepAlive=false
-Dmaven.wagon.http.pool=false
-Dmaven.wagon.httpconnectionManager.ttlSeconds=120
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
profile: ['']
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 17
cache: 'maven'
- name: Compile
run: ./mvnw clean package -DskipTests
- name: Test
run: ./mvnw verify -P "${{ matrix.profile }}" -B
- name: Coverage
if: github.event_name != 'pull_request'
run: ./mvnw -P coverage coveralls:report -B -D repoToken=${{ secrets.COVERALLS_TOKEN }}