FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
aws-lambda-java-libs/.github/workflows/samples.yml at main · deki/aws-lambda-java-libs · GitHub
deki
/
aws-lambda-java-libs
Public
forked from
aws/aws-lambda-java-libs
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
aws-lambda-java-libs
/
.github
/
workflows
/
samples.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
39 lines (32 loc) · 1.05 KB
Breadcrumbs
aws-lambda-java-libs
/
.github
/
workflows
/
samples.yml
Copy path
File metadata and controls
39 lines (32 loc) · 1.05 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
#
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
Back
|
FazBrowse Home
|
New Git URL