Skip to content

Bump org.testng:testng from 7.5.1 to 7.9.0 #520

Bump org.testng:testng from 7.5.1 to 7.9.0

Bump org.testng:testng from 7.5.1 to 7.9.0 #520

Workflow file for this run

## This allows Github actions to build this project
name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [8, 11]
name: build with jdk ${{matrix.java}}
steps:
- uses: actions/checkout@v4
name: checkout
- uses: actions/[email protected]
name: set up jdk ${{matrix.java}}
with:
distribution: 'temurin'
java-version: ${{matrix.java}}
cache: 'maven'
- name: build with maven
run: mvn -B verify javadoc:javadoc --file pom.xml