Skip to content

build(deps): bump holidays from 0.81 to 0.82 #391

build(deps): bump holidays from 0.81 to 0.82

build(deps): bump holidays from 0.81 to 0.82 #391

Workflow file for this run

name: "Black"
on:
pull_request:
push:
branches:
- main
jobs:
black:
runs-on: ubuntu-latest
strategy:
matrix:
tool: ["black", "isort"]
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.14"
allow-prereleases: true
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[formatting]
- name: ${{ matrix.tool }} Code Formatter
run: |
${{ matrix.tool }} . --check