Skip to content

issue #526 split connection timeout and request timeout #637

issue #526 split connection timeout and request timeout

issue #526 split connection timeout and request timeout #637

Workflow file for this run

name: Verify
on:
push:
# Sequence of patterns matched against refs/heads
branches-ignore:
- apache5
pull_request:
jobs:
build:
timeout-minutes: ${{ fromJSON(vars.GHA_DEFAULT_TIMEOUT) }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up JDK 1.11
uses: actions/setup-java@v1
with:
java-version: 1.11
- name: Cache
uses: actions/cache@v1.0.0
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
run: mvn -B package --file pom.xml