Bump black from 19.3b0 to 24.3.0 #113
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
# https://help.github.com/en/github/automating-your-workflow-with-github-actions | |
# https://help.github.com/en/github/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions | |
name: CI | |
on: [push] | |
# push: | |
# paths: | |
# - "*.py" | |
jobs: | |
precommit: | |
name: Pre-commit | |
runs-on: ubuntu-18.04 # https://help.github.com/en/github/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions#jobsjob_idruns-on | |
steps: | |
- uses: actions/checkout@v1 # https://help.github.com/en/github/automating-your-workflow-with-github-actions/configuring-a-workflow#using-the-checkout-action | |
- name: Setup Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.7 | |
architecture: x64 | |
- name: Install pre-commit | |
run: pip install pre-commit==2.7.1 | |
- name: Run pre-commit | |
run: pre-commit run --all |