chore: release version 5.0.3 #67
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: Pipeline | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
lint_black: | |
name: Lint (black) | |
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 Black | |
run: | | |
pip install black | |
- name: Run Black | |
run: | | |
black --check --diff . | |
lint_flake8: | |
name: Lint (flake8) | |
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 Flake8 | |
run: | | |
pip install flake8 flake8-bugbear pep8-naming | |
- name: Run Flake8 | |
run: | | |
flake8 src/gtkspellcheck |