mirror of
https://github.com/zxing/zxing.git
synced 2024-11-13 14:34:08 -08:00
24 lines
398 B
YAML
24 lines
398 B
YAML
|
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
|