Update micronaut-parent to 4.7.0. Re-generate aot-jar.properties usin… #203
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: Micronaut CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ 17 ] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: Use Java ${{ matrix.java }} | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java }} | |
java-package: jdk | |
- name: Set environment variables | |
run: | | |
echo "ISSUER=https://issuer.com" >> $GITHUB_ENV | |
echo "CLIENT_ID=clientId" >> $GITHUB_ENV | |
echo "CLIENT_SECRET=clientSecret" >> $GITHUB_ENV | |
- name: Build and test | |
run: mvn -B -ntp verify |