Bump ch.qos.logback:logback-classic from 1.0.9 to 1.2.13 in /webcam-capture-drivers/driver-ffmpeg-cli #19
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Maven JVM Build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macOS-latest] | |
java: ['11'] | |
distribution: ['temurin'] | |
fail-fast: false | |
name: ${{ matrix.os }} JDK ${{ matrix.distribution }} ${{ matrix.java }} | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v1 | |
- name: Set up JDK | |
id: setupjdk | |
uses: actions/[email protected] | |
with: | |
distribution: ${{ matrix.distribution }} | |
java-version: ${{ matrix.java }} | |
- name: Build with Maven | |
run: mvn verify |