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 e67691e commit 04c45faCopy full SHA for 04c45fa
.github/workflows/test.yaml
@@ -28,3 +28,6 @@ jobs:
28
ec2 = boto3.client("ec2")
29
ec2.describe_regions()
30
print("success")
31
+ - name: Run boto3 by script
32
+ run: |
33
+ python test_boto3.py
test_boto3.py
@@ -0,0 +1,4 @@
1
+import boto3
2
+ec2 = boto3.client("ec2")
3
+ec2.describe_regions()
4
+print("success")
0 commit comments