Skip to content

fix: outdated test test_compare_against_str #35

fix: outdated test test_compare_against_str

fix: outdated test test_compare_against_str #35

Workflow file for this run

name: "Check Format"
on:
# check formatting on any push to main and any open pull request
push:
branches:
- all
pull_request: { }
jobs:
black:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [ "3.13" ]
os: [ ubuntu-latest ]
steps:
- uses: actions/checkout@v4
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
- name: "Black Code Formatter"
run: |
black . --check