bump version to 0.2.0, update history #27
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Style Checks | |
on: | |
pull_request: | |
paths: | |
- '**.py' | |
- '**style-checks.yml' | |
jobs: | |
flake8: | |
name: flake8 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Setup Python | |
uses: actions/setup-python@master | |
with: | |
python-version: 3.9 | |
- name: install | |
id: install | |
run : pip install .[lint] | |
- name: check | |
id: flake8 | |
run: | | |
flake8 --version | |
flake8 inheritance_explorer/ | |
black: | |
name: black | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Setup Python | |
uses: actions/setup-python@master | |
with: | |
python-version: 3.9 | |
- name: install | |
id: install | |
run : pip install .[lint] | |
- name: check | |
id: black | |
run: | | |
black --version | |
black --check --diff inheritance_explorer/ | |
isort: | |
name: isort | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Setup Python | |
uses: actions/setup-python@master | |
with: | |
python-version: 3.9 | |
- name: install | |
id: install | |
run : pip install .[lint] | |
- name: check | |
id: isort | |
run: | | |
isort --version-number | |
isort inheritance_explorer --check --diff | |