We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f73c075 commit 1fd80e4Copy full SHA for 1fd80e4
.github/workflows/ci.yml
@@ -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