Initial s3 commit #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: LocalStack Test | |
on: [ push, pull_request ] | |
jobs: | |
localstack-action-test: | |
name: 'Test LocalStack GitHub Action' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Start LocalStack | |
uses: LocalStack/[email protected] | |
with: | |
image-tag: 'latest' | |
install-awslocal: 'true' | |
configuration: DEBUG=1 | |
use-pro: 'true' | |
state-backend: cloud-pods | |
state-action: load | |
state-name: my-cloud-pod | |
- name: Run Tests against LocalStack | |
run: | | |
awslocal s3 mb s3://test | |
awslocal s3 ls | |
echo "Test Execution complete!" | |
- name: Save LocalStack State | |
uses: LocalStack/[email protected] | |
with: | |
state-backend: local | |
state-action: save | |
state-name: my-ls-state-artifact | |
env: | |
WORKFLOW_ID: ${{ env.MY_GOLDEN_LS_STATE }} |