Hint unstaged repo as well for print_versions
#1206
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
# NB! If this action fails with a rather cryptic message about: | |
# AttributeError: 'Binding' object has no attribute 'names' | |
# This is most likely due to the fact that modules were added | |
# that are not considered in (and one has to patch): | |
# .github/scripts/pre_pyflakes.sh | |
name: Python style | |
on: | |
pull_request: | |
types: [opened] | |
workflow_dispatch: | |
jobs: | |
qa: | |
name: Quality check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Change __all__ exports for pyflake | |
run: | | |
bash .github/scripts/pre_pyflakes.sh | |
- name: Set up Python | |
uses: actions/[email protected] | |
with: | |
python-version: 3.8 | |
- name: patch reviewdog | |
run: sudo chown -R root:root $GITHUB_WORKSPACE | |
- name: Wemake Python Styleguide | |
uses: wemake-services/[email protected] | |
continue-on-error: true | |
with: | |
reporter: 'github-pr-review' | |
env: | |
NUMBA_DISABLE_JIT: 1 | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |