remove stray heroku bits #602
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: CI | |
on: | |
push: | |
branches: | |
- master | |
- deploy | |
- ec2_deploy | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
name: Deploy to AWS | |
runs-on: ubuntu-latest | |
steps: | |
- 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-1 | |
- uses: actions/checkout@v2 | |
- id: deploy | |
uses: webfactory/[email protected] | |
with: | |
application: ccfp-asset-dashboard | |
# name: Run tests | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v1 | |
# - name: Build containers and run tests | |
# run: docker-compose -f docker-compose.yml -f tests/docker-compose.yml run --rm app | |
# - name: Run flake8 | |
# run: docker-compose run --rm app flake8 asset_dashboard |