Skip to content

Commit 1fd80e4

Browse files
committed
chore: add ci integration for LocalStack Action
1 parent f73c075 commit 1fd80e4

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/ci.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: LocalStack Test
2+
on: [ push, pull_request ]
3+
4+
jobs:
5+
localstack-action-test:
6+
name: 'Test LocalStack GitHub Action'
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v3
10+
11+
- name: Start LocalStack
12+
uses: ./
13+
with:
14+
image-tag: 'latest'
15+
install-awslocal: 'true'
16+
env:
17+
LOCALSTACK_API_KEY: ${{ secrets.LOCALSTACK_API_KEY }}
18+
19+
- name: Run Tests against LocalStack
20+
run: |
21+
awslocal s3 mb s3://test
22+
awslocal s3 ls
23+
echo "Test Execution complete!"

0 commit comments

Comments
 (0)