update deps and use single browser at the cost of collecting home pag… #23
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: Feature Branch | |
on: | |
push: | |
branches-ignore: | |
- 'master' | |
jobs: | |
test: | |
name: Unit Test | |
runs-on: ubuntu-18.04 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.17 | |
- name: Maven test | |
run: mvn -B clean test | |
- name: Maven Verify | |
run: mvn -B clean verify -q |