Bump io.github.bonigarcia:webdrivermanager from 4.0.0 to 6.1.0 #21
This file contains hidden or 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 CI with Maven | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: | |
- 8 # Legacy LTS version | |
- 11 # Latest LTS version | |
- 14 # Latest non LTS version | |
- 15-ea # Next non LTS version (under develop) | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK ${{ matrix.java }} | |
uses: actions/setup-java@v1 | |
with: | |
java-version: ${{ matrix.java }} | |
- name: Show a Java version for ${{ matrix.java }} | |
run: java -version | |
- name: Build with Maven using ${{ matrix.java }} | |
run: mvn -B verify |