Skip to content

Merge pull request #20 from laboratoriobridge/22057_update_thymeleaf #18

Merge pull request #20 from laboratoriobridge/22057_update_thymeleaf

Merge pull request #20 from laboratoriobridge/22057_update_thymeleaf #18

Workflow file for this run

name: Java CI with Maven
on:
push:
branches: master
pull_request:
branches: '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 8
uses: actions/setup-java@v2
with:
java-version: '8'
distribution: 'zulu'
- name: Cache local Maven repository
uses: actions/[email protected]
with:
path: ~/.m2/
key: ${{ runner.os }}-maven-${{ hashFiles('pom.xml') }}
- name: Build with Maven
run: mvn clean verify
- name: Upload codecov report
uses: codecov/[email protected]