Bump black from 22.3.0 to 24.3.0 #992
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: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-18.04 | |
| steps: | |
| - name: Setup Python | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: 3.8 | |
| architecture: x64 | |
| - name: Checkout Multipy | |
| uses: actions/checkout@v2 | |
| - name: Install Dependencies | |
| run: | | |
| set -eux | |
| pip install -r dev-requirements.txt | |
| - name: Run Lint | |
| run: | | |
| git config --global url."https://${{ secrets.GITHUB_TOKEN }}:[email protected]/".insteadOf "https://github.com/" | |
| scripts/lint.sh |