Skip to content

chore: change distribution to corretto (#13) #12

chore: change distribution to corretto (#13)

chore: change distribution to corretto (#13) #12

Workflow file for this run

name: Build and Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'corretto'
cache: maven
- name: Build all modules
run: mvn -B package
- name: Run Tests
run: mvn test