Skip to content

Commit 1ee2379

Browse files
committed
add AWS env vars
1 parent ecda107 commit 1ee2379

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ jobs:
1010
uses: actions/checkout@v1
1111
- name: "Setup Java"
1212
uses: actions/setup-java@v1
13+
env:
14+
# We don't actually need AWS credentials in the tests, but LocalStack
15+
# complains if they're not there, so we add dummies to the environment.
16+
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
17+
AWS_SECRET_KEY: ${{ secrets.AWS_SECRET_KEY }}
18+
AWS_REGION: ${{ secrets.AWSREGION }}
1319
with:
1420
java-version: 13
1521
- name: "Build all modules"

0 commit comments

Comments
 (0)