Decrease WQP chunk size to 50 to help with timeout errors #184
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: Format code | |
| on: | |
| pull_request: | |
| branches: [feature/jir] | |
| push: | |
| branches: [feature/jir, dev/jab] | |
| jobs: | |
| format: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| ref: ${{ github.head_ref }} | |
| - uses: psf/black@stable | |
| with: | |
| options: "--verbose" | |
| # src: "pychron/" | |
| # - uses: rickstaa/action-black@v1 | |
| # with: | |
| # black_args: " pychron/**/*.py " | |
| - name: Commit changes | |
| uses: stefanzweifel/git-auto-commit-action@v4.1.2 | |
| with: | |
| commit_message: Formatting changes | |
| branch: ${{ github.head_ref }} |