Improve error message for malformed JSON in request body #740
Workflow file for this run
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: Code Style Check | |
| on: | |
| pull_request: | |
| paths: | |
| - .github/workflows/code-style.yml | |
| - extras/*.py | |
| - httpie/**/*.py | |
| - setup.py | |
| - tests/**/*.py | |
| jobs: | |
| code-style: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-python@v4 | |
| with: | |
| python-version: 3.9 | |
| - run: make venv | |
| - run: make codestyle |