mirror of
https://github.com/zxing/zxing.git
synced 2024-11-12 14:04:06 -08:00
24 lines
400 B
YAML
24 lines
400 B
YAML
|
name: Test Java 21
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ master ]
|
||
|
pull_request:
|
||
|
branches: [ master ]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v4
|
||
|
- name: Set up JDK 21
|
||
|
uses: actions/setup-java@v4
|
||
|
with:
|
||
|
java-version: '21'
|
||
|
distribution: 'temurin'
|
||
|
cache: 'maven'
|
||
|
- name: Build with Maven
|
||
|
run: mvn -nsu -B install
|