Skip to content

Bump org.junit.jupiter:junit-jupiter-api from 5.11.0 to 5.11.3 #242

Bump org.junit.jupiter:junit-jupiter-api from 5.11.0 to 5.11.3

Bump org.junit.jupiter:junit-jupiter-api from 5.11.0 to 5.11.3 #242

Workflow file for this run

name: Java
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Cache Gradle artifacts (downloaded JARs, the wrapper, and any downloaded JDKs)
uses: actions/cache@v2
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
~/.gradle/jdks
key: ${{ runner.os }}-gradle-${{ hashFiles('**/.gradle/') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Build with Gradle (which runs the tests as one of its subtasks)
run: ./gradlew build