FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
aws-lambda-java-libs/.github/workflows/aws-lambda-java-tests.yml at main · aws/aws-lambda-java-libs · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
aws
/
aws-lambda-java-libs
Public
Notifications
You must be signed in to change notification settings
Fork
242
Star
547
Code
Issues
46
Pull requests
24
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
aws-lambda-java-libs
/
.github
/
workflows
/
aws-lambda-java-tests.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
47 lines (39 loc) · 1.22 KB
Breadcrumbs
aws-lambda-java-libs
/
.github
/
workflows
/
aws-lambda-java-tests.yml
Copy path
File metadata and controls
47 lines (39 loc) · 1.22 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
44
45
46
47
#
This workflow will be triggered if there will be changes to aws-lambda-java-tests
#
package or its dependencies (events, serialization), and it builds the package.
name
:
Java CI aws-lambda-java-tests
on
:
workflow_dispatch
:
push
:
branches
:
[ main ]
paths
:
-
'
aws-lambda-java-tests/**
'
-
'
aws-lambda-java-events/**
'
-
'
aws-lambda-java-serialization/**
'
pull_request
:
branches
:
[ '*' ]
paths
:
-
'
aws-lambda-java-tests/**
'
-
'
aws-lambda-java-events/**
'
-
'
aws-lambda-java-serialization/**
'
-
'
.github/workflows/aws-lambda-java-tests.yml
'
permissions
:
contents
:
read
jobs
:
build
:
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/checkout@v6
-
name
:
Set up JDK 1.8
uses
:
actions/setup-java@v5
with
:
java-version
:
8
distribution
:
corretto
cache
:
maven
#
Install dependencies
-
name
:
Install events with Maven
run
:
mvn -B install --file aws-lambda-java-events/pom.xml
-
name
:
Install serialization with Maven
run
:
mvn -B install --file aws-lambda-java-serialization/pom.xml
#
Package target module
-
name
:
Package tests with Maven
run
:
mvn -B package --file aws-lambda-java-tests/pom.xml
Back
|
FazBrowse Home
|
New Git URL