Extract string constants from SemverOut
so they can be reused
#144
Workflow file for this run
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: Java CI with Maven | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Java ${{ matrix.java }} | |
strategy: | |
fail-fast: false | |
matrix: | |
java: [ 8, 11, 17, 18, 19, 21 ] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Java | |
uses: actions/setup-java@v2 | |
with: | |
distribution: zulu | |
java-version: ${{ matrix.java }} | |
cache: maven | |
- name: Build with Maven | |
run: mvn -B package |