Skip to content

chore(deps): update localstack/localstack docker tag to v4 #942

chore(deps): update localstack/localstack docker tag to v4

chore(deps): update localstack/localstack docker tag to v4 #942

Workflow file for this run

name: aws-s3-project
on:
push:
paths:
- "aws-s3-project/**"
branches: [ main ]
pull_request:
paths:
- "aws-s3-project/**"
types:
- opened
- synchronize
- reopened
jobs:
build:
name: Run Unit & Integration Tests
runs-on: ubuntu-latest
strategy:
matrix:
distribution: [ 'temurin' ]
java: [ '21' ]
defaults:
run:
working-directory: ./aws-s3-project
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Setup Java ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: ${{ matrix.distribution }}
cache: 'maven'
- name: Grant execute permission for mvnw
run: chmod +x mvnw
- name: Build with Maven
run: ./mvnw clean verify