Skip to content

fix(deps): update spring core (major) #204

fix(deps): update spring core (major)

fix(deps): update spring core (major) #204

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
name: '${{ matrix.platform }} with Java ${{ matrix.java-version }}'
strategy:
matrix:
platform:
- ubuntu-latest
- windows-latest
- macos-latest
java-version:
- 8
- 11
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: adopt-hotspot
java-version: ${{ matrix.java-version }}
- name: Build and Test
run: mvn -B package