This repository was archived by the owner on Jun 19, 2025. It is now read-only.
chore(deps): update plugin io.micronaut.library to v4 #212
This file contains hidden or 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: Conventional commit validation | |
| on: [ push ] | |
| jobs: | |
| validate-commits: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup JDK 18 used by gradle | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: temurin | |
| java-version: 18 | |
| - uses: gradle/gradle-build-action@v2 | |
| - run: gradle validateCommits -i |