This repository was archived by the owner on Sep 23, 2025. It is now read-only.
Bump black from 25.1.0 to 25.9.0 (#171) #335
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: push | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14-dev"] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip wheel | |
| pip install -r requirements.txt | |
| - name: Run Tests | |
| run: | | |
| PYTHONPATH=$PYTHONPATH:`pwd` coverage run -m unittest --verbose | |
| # coveralls | |
| - name: Check Types - Pyrefly | |
| run: pyrefly check | |
| - name: Check Types - MyPy | |
| run: mypy . | |
| - name: Check Lint - Flake8 | |
| run: flake8 | |
| - name: Check Format - Black | |
| run: black --check . | |
| - name: Build Package | |
| run: python3 setup.py sdist bdist_wheel |