mirror of
https://github.com/zxing/zxing.git
synced 2024-11-09 20:44:03 -08:00
Add Java 14 test flow
This commit is contained in:
parent
aff551ccb9
commit
0fe540c1fc
23
.github/workflows/test_java_14.yml
vendored
Normal file
23
.github/workflows/test_java_14.yml
vendored
Normal file
|
@ -0,0 +1,23 @@
|
|||
name: Test Java 14
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up JDK 14
|
||||
uses: actions/setup-java@v2
|
||||
with:
|
||||
java-version: '14'
|
||||
distribution: 'temurin'
|
||||
cache: maven
|
||||
- name: Build with Maven
|
||||
run: mvn -nsu -B install
|
Loading…
Reference in a new issue