Skip to content

Bump org.springframework:spring-context #32

Bump org.springframework:spring-context

Bump org.springframework:spring-context #32

Workflow file for this run

name: Java CI
on:
push:
branches:
- '**'
- '!master' # excludes master, master is configured by publish action.
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
# Step that does that actual cache save and restore
- uses: actions/cache@v1
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
run: mvn --batch-mode --update-snapshots verify