Skip to content

Commit 6db02b0

Browse files
committed
test boto3
1 parent 3e94913 commit 6db02b0

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/test.yaml

+7-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ jobs:
1818
with:
1919
aws-region: ap-northeast-1
2020
role-to-assume: arn:aws:iam::${{ secrets.AWS_ACCOUNT_ID }}:role/${{ secrets.AWS_ASSUME_ROLE_NAME }}
21-
- name: get caller identity
21+
- name: Get caller identity
2222
run: |
2323
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

Comments
 (0)