Pagination for 1.6.4 controls screen #914
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
name: Build | |
on: [push, pull_request] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
java: [ 17-jdk, 21-jdk ] | |
runs-on: ubuntu-22.04 | |
container: | |
image: eclipse-temurin:${{ matrix.java }} | |
options: --user root | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: gradle/wrapper-validation-action@v2 | |
- run: ./gradlew check build publishToMavenLocal --stacktrace -Porg.gradle.parallel.threads=4 --warning-mode=fail | |
- uses: Juuxel/publish-checkstyle-report@v1 | |
if: ${{ failure() }} | |
with: | |
reports: | | |
**/build/reports/checkstyle/*.xml | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: Artifacts | |
path: build/libs/ | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: Artifacts | |
path: ./**/build/libs/ | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: Maven Local | |
path: /root/.m2/repository |