Skip to content

Allow full configuration of the User-Agent using a builder #29

Allow full configuration of the User-Agent using a builder

Allow full configuration of the User-Agent using a builder #29

Workflow file for this run

name: crawler-commons-http-fetcher build
on:
push:
branches:
- *

Check failure on line 6 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yml

Invalid workflow file

You have an error in your yaml syntax on line 6
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 11, 17 ]
name: Java ${{ matrix.java }}
steps:
- uses: actions/checkout@v2
- name: Setup JDK
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
cache: 'maven'
- name: Build
run: mvn install javadoc:aggregate