add missing call to va_end()
for copied va_list
#28
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
name: Lint Python | |
on: | |
pull_request: | |
paths: ['contrib/**'] | |
push: | |
paths: ['contrib/**'] | |
jobs: | |
lint_python: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: contrib | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
- run: pip install codespell flake8 isort | |
- run: codespell --quiet-level=2 || true | |
- run: flake8 --count --show-source --statistics | |
- run: isort --check-only --profile black . |