Skip to content

build(deps): bump org.junit.jupiter:junit-jupiter-api from 5.10.2 to 5.11.0 #113

build(deps): bump org.junit.jupiter:junit-jupiter-api from 5.10.2 to 5.11.0

build(deps): bump org.junit.jupiter:junit-jupiter-api from 5.10.2 to 5.11.0 #113

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Maven test
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'ci skip')"
steps:
- uses: actions/checkout@v2
- name: Set up JDK 14
uses: actions/setup-java@v2
with:
java-version: '14'
distribution: 'adopt'
- name: Cache Maven packages
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Test with Maven
run: mvn -B test --file pom.xml