Merge pull request #61 from brk/push-mloorrkryqsm #80
This file contains hidden or 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_pycodestyle | |
| on: [pull_request, push] | |
| jobs: | |
| run_pycodestyle: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Install pycodestyle | |
| run: sudo apt-get install -y pycodestyle | |
| - name: Create default local config | |
| run: cp chc/util/ConfigLocal.template chc/util/ConfigLocal.py | |
| - name: Run pycodestyle | |
| run: | | |
| PYTHONPATH=$PWD pycodestyle chc --max-line-length=100 |