From 0b020f5ed7edc696ea919269a6d79241278734c4 Mon Sep 17 00:00:00 2001 From: Maxime David Date: Mon, 24 Mar 2025 14:12:20 +0000 Subject: [PATCH 1/2] fix: samples --- .github/workflows/samples.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/samples.yml b/.github/workflows/samples.yml index c1131648..0d72d9f4 100644 --- a/.github/workflows/samples.yml +++ b/.github/workflows/samples.yml @@ -28,6 +28,9 @@ jobs: # Install events module - name: Install events with Maven run: mvn -B install --file aws-lambda-java-events/pom.xml + # Install serialization module + - name: Install serialization with Maven + run: mvn -B install --file aws-lambda-java-serialization/pom.xml # Install tests module - name: Install tests with Maven run: mvn -B install --file aws-lambda-java-tests/pom.xml From ca5cd76bf2233b6a33193a8cf0c7d29e294cc15e Mon Sep 17 00:00:00 2001 From: Maxime David Date: Mon, 24 Mar 2025 14:21:41 +0000 Subject: [PATCH 2/2] fix: samples --- .github/workflows/samples.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/samples.yml b/.github/workflows/samples.yml index 0d72d9f4..8346b7c2 100644 --- a/.github/workflows/samples.yml +++ b/.github/workflows/samples.yml @@ -15,7 +15,7 @@ on: - '.github/workflows/samples.yml' jobs: - build-kinesis-sample: + build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4