This repository has been archived by the owner on Dec 20, 2024. It is now read-only.
Update pom with maven staging plugins #42
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: CI | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
java: [ '17', '18', '19', '20', '21' ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup build | |
uses: MOEAFramework/.github/actions/setup-build@main | |
with: | |
java-version: ${{ matrix.java }} | |
- name: Run tests | |
run: mvn test |