Skip to content

build(deps): bump commitizen-tools/commitizen-action from 0.18.2 to 0.21.0 #20

build(deps): bump commitizen-tools/commitizen-action from 0.18.2 to 0.21.0

build(deps): bump commitizen-tools/commitizen-action from 0.18.2 to 0.21.0 #20

Workflow file for this run

---
# yamllint disable rule:line-length
name: PR action
on:
pull_request:
types: [opened, reopened, synchronize]
jobs:
lint:
uses: ./.github/workflows/linter.yml
test:
uses: ./.github/workflows/test.yml
build:
name: Build
runs-on: ubuntu-latest
needs: test
steps:
- name: Checkout repository
uses: actions/checkout@v4
if: ${{ !env.ACT }} # skip during local actions testing
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.11
cache: pip
cache-dependency-path: pyproject.toml
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev,release]
- name: Build
run: make dist