Master Merge Hawking Enhancement v0.1.8 #60
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: master-test | |
on: | |
push: | |
branches: [ master ] | |
paths-ignore: | |
- 'licenses/**' | |
- '**.md' | |
- '**.txt' | |
pull_request: | |
branches: [ master ] | |
paths-ignore: | |
- 'licenses/**' | |
- '**.md' | |
- '**.txt' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: Cache Maven packages | |
uses: actions/cache@v2 | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2-${{ hashFiles('pom.xml') }} | |
restore-keys: ${{ runner.os }}-m2 | |
- name: Test with Maven | |
run: mvn --batch-mode --update-snapshots test |