[pip] (deps): Bump the dev-dependencies group with 13 updates #2
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: package-quality-control | |
on: | |
pull_request: | |
branches: | |
- main | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
# Checks that version number has been updated | |
package-quality-control: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Current PR Branch | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
- name: Check for Changed Files | |
id: changed-files | |
uses: tj-actions/changed-files@v44 | |
with: | |
files: | | |
pyproject.toml | |
annotated_logger/__init__.py | |
- name: Install hatch | |
if: steps.changed-files.outputs.any_changed == 'true' | |
run: python -m pip install hatch | |
- name: Compare Versions | |
if: steps.changed-files.outputs.any_changed == 'true' | |
run: | | |
export BRANCH_VERSION=$(hatch version) | |
git checkout main | |
export MAIN_VERSION=$(hatch version) | |
if [[ "$BRANCH_VERSION" == "$MAIN_VERSION" ]]; then echo "Please update package version number." && exit 1; fi |