We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e94913 commit 6db02b0Copy full SHA for 6db02b0
.github/workflows/test.yaml
@@ -18,6 +18,12 @@ jobs:
18
with:
19
aws-region: ap-northeast-1
20
role-to-assume: arn:aws:iam::${{ secrets.AWS_ACCOUNT_ID }}:role/${{ secrets.AWS_ASSUME_ROLE_NAME }}
21
- - name: get caller identity
+ - name: Get caller identity
22
run: |
23
aws sts get-caller-identity
24
+ - name: Run boto3
25
+ shell: python
26
+ run: |
27
+ import boto3
28
+ ec2 = boto3.client("ec2")
29
+ ec2.describe_regions()
0 commit comments