This repository has been archived by the owner on Jun 3, 2024. It is now read-only.
Update dependency maven-wrapper to v3.3.1 - autoclosed #340
Workflow file for this run
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
# | |
# Tomcat-Slf4j-Logback (https://github.com/tomcat-slf4j-logback/tomcat85-slf4j-logback/) | |
# | |
# Copyright (c) 2010-2020 Tomcat-Slf4j-Logback. | |
# | |
# All rights reserved. This program and the accompanying materials are made available under the | |
# terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available | |
# at https://www.eclipse.org/legal/epl-v10.html. | |
# | |
# Contributors: Tomcat-Slf4j-Logback Team. | |
# | |
name: Java CI | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macOS-latest, windows-latest] | |
java: [11, 17, 21] | |
distribution: ['zulu'] | |
fail-fast: false | |
max-parallel: 4 | |
name: Test JDK ${{ matrix.java }}, ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: ${{ matrix.distribution }} | |
- name: Test with Maven | |
run: ./mvnw test -B |