Skip to content

build(deps): bump org.slf4j:slf4j-api from 2.0.10 to 2.0.16 #310

build(deps): bump org.slf4j:slf4j-api from 2.0.10 to 2.0.16

build(deps): bump org.slf4j:slf4j-api from 2.0.10 to 2.0.16 #310

name: build and test
on:
push:
branches:
- main
pull_request:
jobs:
build-and-test:
name: Test using Java ${{ matrix.java }}
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '8', '11', '17', '19' ]
steps:
- uses: actions/checkout@v3
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml