zxing/.github/workflows/test_java_17.yml

24 lines
400 B
YAML
Raw Normal View History

2022-03-01 13:31:37 -08:00
name: Test Java 17
2022-03-01 13:12:45 -08:00
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
2022-03-01 13:31:37 -08:00
- name: Set up JDK 17
uses: actions/setup-java@v4
2022-03-01 13:12:45 -08:00
with:
2022-03-01 13:31:37 -08:00
java-version: '17'
2022-03-01 13:12:45 -08:00
distribution: 'temurin'
2023-04-26 19:38:15 -07:00
cache: 'maven'
2022-03-01 13:12:45 -08:00
- name: Build with Maven
run: mvn -nsu -B install