Skip to content
This repository was archived by the owner on Apr 6, 2025. It is now read-only.

Archive Notice

Archive Notice #15

Workflow file for this run

name: CI
on:
push:
branches: [main, dev, test]
jobs:
# Set the name of the environment based on the branch.
# In practice, this is just changing 'main' to 'prod', and leaving 'dev' and 'test' the same.
# It is used to set the name of the environment used for the elastic beanstalk deploy.
eb-env:
outputs:
env-name: ${{ steps.env-name.outputs.env }}
runs-on: ubuntu-latest
steps:
- name: Setup Environment Name
id: env-name
run: |
echo "::set-output name=env::${{ fromJSON('{"main":"prod","dev":"dev","test":"test"}')[github.ref_name] }}"
test:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE
- uses: actions/checkout@v2
# Set up Python 3.7 environment
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: "3.7"
- name: Get pip cache dir
id: pip-cache
run: |
echo "::set-output name=dir::$(pip cache dir)"
- name: Cache pip
uses: actions/cache@v1
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
# Install dependencies
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
# Configure AWS Credentials
- 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-1
# Run our unit tests
- name: Run unit tests
run: |
python -m pytest
deploy:
needs:
- eb-env
- test
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE
- uses: actions/checkout@v2
# Set up Python 3.7 environment
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: "3.7"
# Set up cache for pip
- name: Get pip cache dir
id: pip-cache
run: |
echo "::set-output name=dir::$(pip cache dir)"
- name: Cache pip
uses: actions/cache@v1
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
# Elastic Beanstalk CLI version
- name: Get EB CLI version
run: |
python -m pip install --upgrade pip
pip install awsebcli --upgrade
eb --version
# Configure AWS Credentials
- 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-1
# Create the Elastic Beanstalk application
- name: Create EBS application
run: |
eb init -p python-3.7 quickanalysis --region us-east-1
# Deploy to (or Create) the Elastic Beanstalk environment
- name: Create test environment & deploy
run: |
(eb use quickanalysis-${{ needs.eb-env.outputs.env-name }} \
&& eb status quickanalysis-${{ needs.eb-env.outputs.env-name }} \
&& eb deploy ) \
|| eb create quickanalysis-${{ needs.eb-env.outputs.env-name }}