Skip to content

Bump org.junit:junit-bom from 5.10.0 to 5.10.3 #18

Bump org.junit:junit-bom from 5.10.0 to 5.10.3

Bump org.junit:junit-bom from 5.10.0 to 5.10.3 #18

Workflow file for this run

name: Build & Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Build
strategy:
fail-fast: false
max-parallel: 4
matrix:
java:
- 11
- 17
os:
- ubuntu-latest
- windows-latest
- macos-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- name: Cache dependencies
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Build & Test
run: ./gradlew test