Files
configure-aws-credentials/.github/workflows/test-workflow.yml
T
CodeBuild Integration Test a2a4e956b7 Test commit 058322d68a
2020-02-13 01:57:05 +00:00

31 lines
784 B
YAML

on:
push:
branches:
- integ-tests
name: Integration Test
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Print current build ID
run: |
echo Integration test run: githubactionsconfigureawscr-hAMhr2qzHnWH:56f04952-31a8-4bca-8024-cc9c11ee1fa0
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@058322d68aff6d516a3cec1dd6d4f092d51caaf8
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