Skip to content

Fix README.md install instructions (#2136) #38

Fix README.md install instructions (#2136)

Fix README.md install instructions (#2136) #38

Workflow file for this run

name: Linux Tests
on: [push, pull_request]
jobs:
build:
name: Linux Tests
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Prepare Environment
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: PEP8
run: |
make pep8
- name: unittest
run: |
make unittest