This repository has been archived by the owner on Sep 26, 2024. It is now read-only.
Merge pull request #153 from Programmer245/Exporting-JavaDoc-AllNonCo… #1
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: Maven - Build and Test | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: CI - Branch Checkout | |
uses: actions/checkout@v4 | |
- name: CI - Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '21' | |
distribution: 'adopt' | |
- name: Maven - Build | |
run: mvn -B package --file pom.xml | |
- name: Maven - Test | |
run: mvn test |