Skip to content
This repository has been archived by the owner on May 31, 2024. It is now read-only.

maven: bump the minor group across 1 directory with 16 updates #79

maven: bump the minor group across 1 directory with 16 updates

maven: bump the minor group across 1 directory with 16 updates #79

Workflow file for this run

name: Tests
on:
pull_request:
types: [ opened, synchronize ]
branches:
- main
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
Test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '20'
distribution: 'zulu'
- uses: aws-actions/setup-sam@v2
with:
use-installer: true
- name: Maven Package
run: mvn clean package
- name: Upload Results
uses: actions/upload-artifact@v3
if: success() || failure()
with:
name: test-results
path: target/surefire-reports/**/*.xml
- name: Validate AWS Template
run: |
cd infra/layer
sam validate --lint
sam build