Bump types-setuptools from 83.0.0.20260706 to 83.0.0.20260716 #498
Workflow file for this run
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.10", "3.11", "3.12", "3.13", "3.14", "3.15-dev"] | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Restore pip cache | |
| uses: actions/cache@v6 | |
| with: | |
| path: ~/.cache/pip | |
| key: pip-${{ matrix.python-version }}-${{ hashFiles('requirements.txt') }} | |
| restore-keys: | | |
| pip-${{ matrix.python-version }}- | |
| - 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 | |
| pip install -r requirements.txt | |
| - name: Build Package | |
| run: python -m build | |
| - name: Install package | |
| run: pip install --editable . | |
| - name: Run Tests | |
| run: python -m unittest --verbose | |
| - name: Check Types - Pyrefly | |
| run: pyrefly check | |
| - name: Check Types - MyPy | |
| run: mypy --exclude "build" . | |
| - name: Check Lint - Flake8 | |
| run: flake8 | |
| - name: Check Format - Black | |
| run: black --check . | |
| publish: | |
| runs-on: ubuntu-latest | |
| needs: ci | |
| if: github.ref == 'refs/heads/main' | |
| steps: | |
| - uses: actions/checkout@master | |
| - name: Fetch all tags | |
| run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: 3.12 | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -r requirements.txt | |
| - name: Register identity | |
| run: | | |
| git config --global user.email "github-bot@jonjanzen.com" | |
| git config --global user.name "bigfootjon-bot" | |
| - name: Publish to PyPi | |
| env: | |
| TWINE_USERNAME: bigfootjon | |
| TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} | |
| run: python publish.py |