Skip to content

chore(deps): bump idna from 3.11 to 3.15 #321

chore(deps): bump idna from 3.11 to 3.15

chore(deps): bump idna from 3.11 to 3.15 #321

Workflow file for this run

name: black
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ inputs.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ inputs.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
python-version: ${{ inputs.python-version }}
- name: Install the project dependencies
shell: bash
run: uv sync --locked --all-extras --dev
- name: Check black
run: |
make checkblack