Skip to content

Bump org.springframework:spring-context from 6.1.13 to 6.1.14 in the maven group across 1 directory #45

Bump org.springframework:spring-context from 6.1.13 to 6.1.14 in the maven group across 1 directory

Bump org.springframework:spring-context from 6.1.13 to 6.1.14 in the maven group across 1 directory #45

Workflow file for this run

name: Maven
on:
push:
branches:
- main
- lab-[1234]
pull_request:
branches:
- main
- lab-[1234]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Compile
run: mvn compile
- name: Unit Test
run: mvn test
- name: Package
run: mvn package