Skip to content

bugfixes, change server naming to be set by config file name #554

bugfixes, change server naming to be set by config file name

bugfixes, change server naming to be set by config file name #554

Workflow file for this run

name: CI
on: push
jobs:
check:
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: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Setup flake8 annotations
uses: rbialon/flake8-annotations@v1
- name: Lint with flake8
run: |
pip install flake8
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistic
- name: Python Interrogate Check
uses: JackMcKew/python-interrogate-check@main
with:
path: 'pylabnet'
fail-under: 0