build(deps): bump requests from 2.32.3 to 2.33.1 #626
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: Lint | |
| on: push | |
| jobs: | |
| Flake8: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Set up Python | |
| uses: actions/setup-python@v3 | |
| - name: Setup dependencies | |
| run: pip install flake8 | |
| - name: Run Python Linter | |
| run: flake8 binary.py | |
| ## Vint is disabled because it cannot parse | |
| ## the expression "a" .. "b" (see :help expr-..) | |
| # Vint: | |
| # runs-on: ubuntu-latest | |
| # steps: | |
| # - name: Checkout | |
| # uses: actions/checkout@v3 | |
| # - name: Set up Python | |
| # uses: actions/setup-python@v3 | |
| # - name: Setup dependencies | |
| # run: pip install vim-vint | |
| # - name: Run Vimscript Linter | |
| # run: vint . |