File tree 2 files changed +18
-0
lines changed
2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change
1
+ on :
2
+ pull_request :
3
+ branches :
4
+ - master
5
+ jobs :
6
+ test :
7
+ runs-on : macos-13
8
+ env :
9
+ AWS_ACCESS_KEY_ID : ${{ secrets.QA_USER_AWS_ACCESS_KEY_ID }}
10
+ AWS_SECRET_ACCESS_KEY : ${{ secrets.QA_USER_AWS_SECRET_ACCESS_KEY }}
11
+ steps :
12
+ - name : Checkout repository
13
+ uses : actions/checkout@v4
14
+ - name : Setup Docker
15
+ uses : douglascamata/setup-docker-macos-action@v1-alpha
16
+ - name : Run Hydra
17
+ run : bash -x ./docker/env/hydra.sh list-images
Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ def can_get_to_aws_account():
40
40
assert response ['Account' ] == account_id
41
41
LOGGER .info ("logged in as %s" , response ['Arn' ])
42
42
except (NoCredentialsError , AssertionError ):
43
+ LOGGER .exception ("failed" )
43
44
return False
44
45
return True
45
46
You can’t perform that action at this time.
0 commit comments