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

Merge pull request #16 from amersaw/fix-documentation #20

Merge pull request #16 from amersaw/fix-documentation

Merge pull request #16 from amersaw/fix-documentation #20

Workflow file for this run

name: Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [2.7, 3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install pipenv
uses: dschep/install-pipenv-action@v1
- name: Install dependencies
run: pipenv install
- name: Setup.py develop
run: pipenv run python setup.py develop
- name: Test with pytest
run: pipenv run pytest
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