Merge pull request #42 from cancervariants/eb #1596
Workflow file for this run
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: github-actions | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.DUMMY_AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.DUMMY_AWS_SECRET_ACCESS_KEY }} | |
AWS_DEFAULT_REGION: us-east-2 | |
AWS_DEFAULT_OUTPUT: text | |
GENE_NORM_DB_URL: http://localhost:8000 | |
TEST: GENE_TEST | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.7 | |
- name: Install dependencies | |
run: | | |
python3 -m pip install pipenv | |
pipenv install --dev | |
- name: Build local DynamoDB | |
run: | | |
chmod +x ./tests/unit/dynamodb_build.bash | |
./tests/unit/dynamodb_build.bash | |
- name: Load and Test DynamoDB | |
run: | | |
pipenv run pytest tests/unit/test_database.py | |
- run: pipenv run flake8 | |
- run: pipenv run pytest tests/ |