Skip to content

Update pom.xml

Update pom.xml #16

Workflow file for this run

name: CI Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
env:
SPRING_PROFILES_ACTIVE: 'docker'
name: Maven Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Java 21
uses: actions/setup-java@v3
with:
java-version: 21
distribution: 'temurin'
cache: 'maven'
- name: Build and Run Tests with Maven
run: mvn verify
services:
redis:
image: redis
ports:
- 6379:6379