Skip to content

add link to prod app #19

add link to prod app

add link to prod app #19

Workflow file for this run

name: build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: test
runs-on: ubuntu-latest
container:
image: maven:3-amazoncorretto-25-debian
steps:
- uses: actions/checkout@v6
- name: cache maven deps
uses: actions/cache@v5
with:
path: .m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('pom.xml') }}
restore-keys: ${{ runner.os }}-maven-
- name: run tests
run: mvn test -B -Dmaven.repo.local=.m2/repository
container:
name: container image build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: set up buildx
uses: docker/setup-buildx-action@v3
- name: build image
uses: docker/build-push-action@v6
with:
context: .
push: false
cache-from: type=gha
cache-to: type=gha,mode=max