8000 Bump org.apache.maven.plugins:maven-surefire-plugin from 3.5.2 to 3.5.3 · erosb/json-sKema@3eedf7c · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.5.2 to 3.5.3 #508

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.5.2 to 3.5.3

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.5.2 to 3.5.3 #508

Workflow file for this run

name: Java CI
on: [push, pull_request]
jobs:
build-ac:
name: AC Test with Java ${{ matrix.jdk }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
jdk: ['8', '11', '17', '21' ]
steps:
- uses: actions/checkout@v4
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Set up JDK ${{ matrix.jdk }}
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: ${{ matrix.jdk }}
cache: 'maven'
- name: Test with Maven
run: mvn -B verify
build-unittest:
name: Unit Test with Java ${{ matrix.jdk }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
jdk: ['8', '11', '17', '21' ]
steps:
- uses: actions/checkout@v4
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Set up JDK ${{ matrix.jdk }}
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: ${{ matrix.jdk }}
cache: 'maven'
- name: Test with Maven
run: mvn -B test -Dgroups='!acceptance'
0