Skip to content

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

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

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

Workflow file for this run

name: tests
on:
schedule:
- cron: "0 4 * * 0" # At 04:00 on Sunday.
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
services:
redis:
image: redis:alpine
ports:
- 6379:6379
strategy:
matrix:
jdk: [8, 17, 21]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: ${{ matrix.jdk }}
distribution: temurin
cache: maven
- run: mvn -T1C --batch-mode verify