Skip to content

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.4.0 to 3.5.0 #130

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.4.0 to 3.5.0

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.4.0 to 3.5.0 #130

Workflow file for this run

name: Build
on: push
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '17'
- uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- run: mvn -version
- run: ./mvnw -U test -Dgithub_token=${{ secrets.GH_TOKEN_REPO }} -Dserver_start_timeout=15 -DfailIfNoTests
- uses: codecov/codecov-action@v1