We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e66ddcf commit dfb8911Copy full SHA for dfb8911
.github/workflows/samples.yml
@@ -15,7 +15,7 @@ on:
15
- '.github/workflows/samples.yml'
16
17
jobs:
18
- build-kinesis-sample:
+ build:
19
runs-on: ubuntu-latest
20
steps:
21
- uses: actions/checkout@v4
@@ -28,6 +28,9 @@ jobs:
28
# Install events module
29
- name: Install events with Maven
30
run: mvn -B install --file aws-lambda-java-events/pom.xml
31
+ # Install serialization module
32
+ - name: Install serialization with Maven
33
+ run: mvn -B install --file aws-lambda-java-serialization/pom.xml
34
# Install tests module
35
- name: Install tests with Maven
36
run: mvn -B install --file aws-lambda-java-tests/pom.xml
0 commit comments