Skip to content

[Release] Bump version to 1.0.0-alpha.9 #124

[Release] Bump version to 1.0.0-alpha.9

[Release] Bump version to 1.0.0-alpha.9 #124

Workflow file for this run

name: Code quality
on: pull_request
jobs:
pylint:
runs-on: ubuntu-latest
name: Pylint
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install -r requirements.txt
python -m pip install -r tests/requirements.txt
python -m pip install .
- name: Lint
uses: TheFoundryVisionmongers/[email protected]
with:
pylint-disable: fixme # We track 'todo's through other means
pylint-rcfile: "./pyproject.toml"
pylint-paths: "plugin tests"
black:
runs-on: ubuntu-latest
name: Python formatting
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install black
- name: Check Python formatting
run: black --check .