Skip to content
This repository has been archived by the owner on Sep 22, 2023. It is now read-only.

Update README.md

Update README.md #49

Workflow file for this run

name: Ensure Code Formatting
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Dependencies
run: |
conda install python=3.8
python -m pip install pycodestyle autopep8
python -m pip install -r requirements.txt
python -m pip install -e .
- name: Check Errors
run: |
pycodestyle --statistics --count --max-line-length=150 --show-source .