Skip to content

qfp: Fix duplicate sentence in description #105

qfp: Fix duplicate sentence in description

qfp: Fix duplicate sentence in description #105

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
tests:
name: "Python ${{ matrix.python-version }}"
runs-on: ubuntu-20.04
strategy:
matrix:
python-version:
- "3.6"
- "3.7"
- "3.8"
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "${{ matrix.python-version }}"
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run pytest
run: pytest
- name: Run mypy
run: mypy --strict
common.py
entities/*.py
dfn_configs.py
generate*.py
test_entities.py
# test_common.py
# test_generate_connectors.py
# test_generate_qfn.py
- name: Run flake8
run: flake8
- name: Run isort
run: isort --check --diff .