Skip to content

Added automatic dash gui generator using dash-component-editor #10

Added automatic dash gui generator using dash-component-editor

Added automatic dash gui generator using dash-component-editor #10

Workflow file for this run

name: test-and-lint
on: pull_request
jobs:
test-and-lint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python 3.9.16
uses: actions/setup-python@v3
with:
python-version: '3.9.16'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# 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 --statistics
- name: Run isort
uses: isort/isort-action@master
- name: Test formatting with black
run: |
black . --check
- name: Run pytest
run: |
python -m pytest