Skip to content

[QUESTION] Line too long in brackets #105 (https://github.com/SENATO… #1145

[QUESTION] Line too long in brackets #105 (https://github.com/SENATO…

[QUESTION] Line too long in brackets #105 (https://github.com/SENATO… #1145

Workflow file for this run

name: "SENATOROV"
permissions:
contents: write # Grant write access to the repository contents
on:
push:
branches:
- "**"
schedule:
- cron: "0 0 * * *" # Run every day
workflow_dispatch:
create:
delete:
release:
issues:
jobs:
blacken-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install blacken-docs nbqa
- name: Blacken-docs
run: |
nbqa blacken-docs --nbqa-md --nbqa-diff $(git ls-files '*.py' '*.ipynb')