Skip to content

added scheduling option for rerunning task #266

added scheduling option for rerunning task

added scheduling option for rerunning task #266

Workflow file for this run

name: Run tests
on: [push]
jobs:
tests:
name: Run tests with spring boot version compability check
runs-on: ubuntu-latest
strategy:
matrix:
spring-boot: [ '2.7.15', '3.0.6', '3.1.3' ]
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: run tests
run: mvn -B -Dspring-boot.version=${{ matrix.spring-boot }} clean test --file pom.xml