mirror of
https://github.com/zxing/zxing.git
synced 2025-01-11 11:17:28 -08:00
Test vs Java 21
This commit is contained in:
parent
28c08eec89
commit
2326dd4ff3
23
.github/workflows/test_java_21.yml
vendored
Normal file
23
.github/workflows/test_java_21.yml
vendored
Normal file
|
@ -0,0 +1,23 @@
|
|||
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
|
Loading…
Reference in a new issue