We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e6886e commit 1d549f9Copy full SHA for 1d549f9
.github/workflows/sonarcloud.yml
@@ -25,6 +25,14 @@ jobs:
25
with:
26
python-version: 3.11
27
28
+ - name: Set up AWS credentials
29
+ env:
30
+ AWS_ACCESS_KEY_ID: "FOOBARKEY"
31
+ AWS_SECRET_ACCESS_KEY: "FOOBARSECRET"
32
+ run: |
33
+ aws configure set aws_access_key_id $AWS_ACCESS_KEY_ID
34
+ aws configure set aws_secret_access_key $AWS_SECRET_ACCESS_KEY
35
+
36
- name: Install poetry
37
run: pip install poetry==2.1.2
38
0 commit comments