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

Update README.md

Update README.md #23

Workflow file for this run

name: Test and Lint
on: pull_request
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 6
matrix:
python-version: [3.6, 3.7]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@master
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@master
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
- name: Test with pytest
run: |
pytest fnet/tests/
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python 3.7
uses: actions/setup-python@master
with:
python-version: 3.7
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
- name: Lint with flake8
run: |
flake8 fnet --count --verbose --max-line-length=127 --show-source --statistics