171 xua simpleclient encoding problem on multiparted #92
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will test the project Javadoc with Maven on pull requests | |
name: Test Javadoc | |
on: | |
pull_request: | |
branches: [ master, develop ] | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: maven | |
- name: Test Javadoc | |
run: mvn javadoc:aggregate --batch-mode --no-transfer-progress --file pom.xml |