Skip to content

Bump black from 19.3b0 to 24.3.0 #113

Bump black from 19.3b0 to 24.3.0

Bump black from 19.3b0 to 24.3.0 #113

Workflow file for this run

# 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