-
Notifications
You must be signed in to change notification settings - Fork 240
Expand file tree
/
Copy pathaws-lambda-java-serialization.yml
More file actions
43 lines (34 loc) · 1.1 KB
/
aws-lambda-java-serialization.yml
File metadata and controls
43 lines (34 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# This workflow will be triggered if there will be changes to aws-lambda-java-serialization
# package and it builds the package and the packages that depend on it.
name: Java CI aws-lambda-java-serialization
on:
push:
branches: [ main ]
paths:
- 'aws-lambda-java-serialization/**'
pull_request:
branches: [ '*' ]
paths:
- 'aws-lambda-java-serialization/**'
- '.github/workflows/aws-lambda-java-serialization.yml'
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up JDK 1.8
uses: actions/setup-java@v4
with:
java-version: 8
distribution: corretto
# Install base module
- name: Install events with Maven
run: mvn -B install --file aws-lambda-java-events/pom.xml
# Package and install target module
- name: Package serialization with Maven
run: mvn -B package install --file aws-lambda-java-serialization/pom.xml
# Run tests
- name: Run tests from aws-lambda-java-tests
run: mvn test --file aws-lambda-java-tests/pom.xml