We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ecda107 commit 1ee2379Copy full SHA for 1ee2379
1 file changed
.github/workflows/ci.yml
@@ -10,6 +10,12 @@ jobs:
10
uses: actions/checkout@v1
11
- name: "Setup Java"
12
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 }}
19
with:
20
java-version: 13
21
- name: "Build all modules"
0 commit comments