Skip to content

#26 - Upgrading the tomcat version in use. #92

#26 - Upgrading the tomcat version in use.

#26 - Upgrading the tomcat version in use. #92

Workflow file for this run

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