Skip to content

build(deps): bump pytest-subtests from 0.14.2 to 0.15.0 #795

build(deps): bump pytest-subtests from 0.14.2 to 0.15.0

build(deps): bump pytest-subtests from 0.14.2 to 0.15.0 #795

Workflow file for this run

name: "Formatting"
on: [push]
jobs:
check:
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
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[formatting]
- name: ${{ matrix.tool }} Code Formatter
run: |
${{ matrix.tool }} . --check