Intial project

This commit is contained in:
2020-10-04 18:14:24 -04:00
parent 3657995de4
commit 10571c76ff
8 changed files with 240 additions and 0 deletions

19
.github/workflows/test_action.yml vendored Normal file
View File

@ -0,0 +1,19 @@
name: Test Action
on: [push, pull_request, workflow_dispatch]
jobs:
TestAction:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Run Action
uses: ./
with:
directory: test_project
environment: test
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_DEFAULT_REGION: us-east-1