From ab24425ffcf34bd5ba43a518b482ac4afd5327bb Mon Sep 17 00:00:00 2001 From: Clare Liguori Date: Fri, 31 Jan 2020 17:18:37 -0500 Subject: [PATCH] Test workflow --- .github/workflows/test-workflow.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/test-workflow.yml diff --git a/.github/workflows/test-workflow.yml b/.github/workflows/test-workflow.yml new file mode 100644 index 0000000..69c245b --- /dev/null +++ b/.github/workflows/test-workflow.yml @@ -0,0 +1,26 @@ +on: + push: + branches: + - integ-tests + +name: Integration Test + +jobs: + deploy: + name: Deploy + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Configure AWS credentials + uses: aws-actions/configure-aws-credentials@v1 + with: + aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} + aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + aws-region: us-east-2 + + - name: Test environment is configured with AWS credentials + run: | + aws sts get-caller-identity > /dev/null