Skip to content

bump: aws-lambda-java-events from 3.12.0 to 3.13.0 (#500) #35

bump: aws-lambda-java-events from 3.12.0 to 3.13.0 (#500)

bump: aws-lambda-java-events from 3.12.0 to 3.13.0 (#500) #35

Workflow file for this run

# This workflow will be triggered if there will be changes to aws-lambda-java-core
# package and it builds the package and the packages that depend on it.
name: Java CI samples
on:
push:
branches: [ main ]
paths:
- 'samples/kinesis-firehose-event-handler/**'
pull_request:
branches: [ '*' ]
paths:
- 'samples/kinesis-firehose-event-handler/**'
- '.github/workflows/samples.yml'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 1.8
uses: actions/setup-java@v4
with:
java-version: 8
distribution: corretto
# Install events module
- name: Install events with Maven
run: mvn -B install --file aws-lambda-java-events/pom.xml
# Install tests module
- name: Install tests with Maven
run: mvn -B install --file aws-lambda-java-tests/pom.xml
# Install samples
- name: Install Kinesis Firehose Sample with Maven
run: mvn -B install --file samples/kinesis-firehose-event-handler/pom.xml