Move experimental title handling to a separate processor #123
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: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java-version: [8, 11, 17] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: gradle/wrapper-validation-action@v1 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java-version }} | |
# - run: ./gradlew build | |
- run: ./gradlew :thymeleaf-layout-dialect:build | |
- run: ./gradlew jacocoTestReport | |
- uses: codecov/codecov-action@v3 | |
with: | |
directory: thymeleaf-layout-dialect/build/reports/jacoco/ |