* pre * update docs * update docs * $ in bash * size -> hidden_layer_size * doctest * doctest again * filter a warning * fix bug * fix examples * test fail * test succ
31 lines
712 B
YAML
31 lines
712 B
YAML
name: PEP8 and Docs Check
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Python 3.8
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: 3.8
|
|
- name: Upgrade pip
|
|
run: |
|
|
python -m pip install --upgrade pip setuptools wheel
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install flake8
|
|
- name: Lint with flake8
|
|
run: |
|
|
flake8 . --count --show-source --statistics
|
|
- name: Install dependencies
|
|
run: |
|
|
pip install ".[dev]" --upgrade
|
|
- name: Documentation test
|
|
run: |
|
|
cd docs
|
|
make html SPHINXOPTS="-W"
|
|
cd ..
|