Skip to content

Use black to lint python files #17

Use black to lint python files

Use black to lint python files #17

Workflow file for this run

name: Run Tests
on:
push:
branches:
- '**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install nose
- name: Run tests
run: |
nosetests