readme: move message_format
config option below message
in example
#58
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: ci | |
on: [push, pull_request] | |
jobs: | |
pycodestyle: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version-file: '.ci-python-version' | |
- name: Install pycodestyle | |
run: pip install pycodestyle | |
- name: Check code style with PyCodestyle | |
run: pycodestyle --count --max-line-length 120 plugin.py | |
mypy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version-file: '.ci-python-version' | |
- name: Install maubot & mypy | |
run: pip install maubot mypy | |
- name: Check typing with mypy | |
run: mypy plugin.py |