Skip to content

Add workflow to doc dir #891

Add workflow to doc dir

Add workflow to doc dir #891

Workflow file for this run

name: Code Check - Linting using flake8
on:
push:
paths-ignore:
- "infra/**"
branches:
- master
- develop
pull_request:
branches:
- master
- develop
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: 3.10.13
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
pip install flake8-docstrings
- name: Lint with flake8 for src
run: |
flake8 src --count --select=E9,F63,F7,F82,D102 --docstring-convention numpy --show-source --statistics --ignore=E501,C901
- name: Lint with flake8 for API
run: |
flake8 API/ --select=E9,F63,F7,F82,D102 --count --statistics --ignore=E501,C901