Skip to content

Commit 04c45fa

Browse files
committed
test boto3 script
1 parent e67691e commit 04c45fa

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.github/workflows/test.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,6 @@ jobs:
2828
ec2 = boto3.client("ec2")
2929
ec2.describe_regions()
3030
print("success")
31+
- name: Run boto3 by script
32+
run: |
33+
python test_boto3.py

test_boto3.py

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import boto3
2+
ec2 = boto3.client("ec2")
3+
ec2.describe_regions()
4+
print("success")

0 commit comments

Comments
 (0)