Skip to content

add support for a Dirichlet process node #378

add support for a Dirichlet process node

add support for a Dirichlet process node #378

Workflow file for this run

name: Linting
on:
push:
branches:
- master
pull_request:
branches:
- "*"
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v2
name: Configure pip caching
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install isort==5.10.1 flake8 black==23.1.0 pydocstyle==6.3.0 mypy==1.1.1
- name: Run linting
run: |
flake8 ./pyhgf/
black ./pyhgf/
isort ./pyhgf/
pydocstyle pyhgf/. --ignore=D213,D100,D203,D104
mypy ./pyhgf/ --ignore-missing-imports