Skip to content

BBA Changes

BBA Changes #92

Workflow file for this run

name: Code CI
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python: ["3.8", "3.9"]
steps:
- name: Checkout Source
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install Python Dependencies
run: |
pip install pipenv twine
pipenv install --dev --deploy --python $(which python) && pipenv graph
- name: Run tests and check formatting
run: pipenv run tests