Unify and clean code style and docstring #144
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
# copied from https://github.com/XENONnT/straxen/blob/master/.github/workflows/code_style.yml | |
name: Python style | |
on: | |
pull_request: | |
# types: [opened] | |
jobs: | |
qa: | |
name: Quality check | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@master | |
with: | |
python-version: 3.8 | |
- name: patch reviewdog | |
run: sudo chown -R root:root $GITHUB_WORKSPACE | |
- name: Wemake Python Stylguide | |
uses: wemake-services/[email protected] | |
continue-on-error: true | |
with: | |
reporter: 'github-pr-review' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |