Bump types-setuptools from 71.1.0.20240806 to 71.1.0.20240813 #276
Workflow file for this run
This file contains 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: Run test commands | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
bump: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- uses: fizyk/actions-reuse/.github/actions/pipenv@v2.4.7 | |
with: | |
python-version: "3.12" | |
command: tbump --dry-run --only-patch $(pipenv run tbump current-version)"-x" | |
towncrier: | |
runs-on: ubuntu-latest | |
if: ${{ github.actor != 'dependabot[bot]' }} | |
steps: | |
- uses: fizyk/actions-reuse/.github/actions/pipenv@v2.4.7 | |
with: | |
python-version: "3.12" | |
command: towncrier check --compare-with origin/main | |
fetch-depth: 0 |