Skip to content

Commit ee21b13

Browse files
committed
Test workflow
1 parent 6973660 commit ee21b13

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/test.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
on:
2+
push:
3+
branches:
4+
- bht
5+
6+
7+
jobs:
8+
test:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout code
12+
uses: actions/checkout@v4
13+
14+
15+
- name: Configure aws credentials
16+
uses: aws-actions/[email protected]
17+
with:
18+
role-to-assume: ${{ vars.AWS_IAM_ROLE_ARN }}
19+
aws-region: us-east-1
20+
21+
- name: Test S3 bucket access
22+
shell: bash
23+
run: |
24+
aws s3 ls

0 commit comments

Comments
 (0)