#26 - Upgrading the tomcat version in use. #92
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 LTS Build on Windows | |
on: [push] | |
jobs: | |
build: | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
# Test Against LTS Java Versions | |
java: [ 8, 11 ] | |
#java: [ 8, 11, 17 ] - Waiting for Spark 3.3.0 - before we can do 17 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Java Version | |
uses: actions/setup-java@v1 | |
with: | |
java-version: ${{ matrix.java }} | |
- name: Cache Maven Modules | |
uses: actions/cache@v1 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-devworx-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-devworx-maven- | |
- name: Build with Maven | |
run: mvn -B clean install --file pom.xml | |