Skip to content

Bump org.junit.jupiter:junit-jupiter-engine from 5.9.1 to 5.10.2 (#120) #110

Bump org.junit.jupiter:junit-jupiter-engine from 5.9.1 to 5.10.2 (#120)

Bump org.junit.jupiter:junit-jupiter-engine from 5.9.1 to 5.10.2 (#120) #110

Workflow file for this run

name: Build
permissions:
contents: read
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Get repo
uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'adopt'
- name: Build with Maven
run: mvn --batch-mode --update-snapshots package '-Dmaven.test.skip'
- name: Run JUnit Tests
run: mvn --batch-mode test '-DfailIfNoTests=false'
- name: statically analyze code using SpotBugs
run: mvn --batch-mode compile spotbugs:check -pl -jgalgo-bench