Skip to content

Rename lce to correction #319

Rename lce to correction

Rename lce to correction #319

Workflow file for this run

# 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: Change __all__ exports for pyflake
run: |
bash .github/scripts/pre_pyflakes.sh
- 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 }}