chore: Bump serde_json from 1.0.127 to 1.0.128 #440
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: Pull Request Validation | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
check_commits: | |
runs-on: ubuntu-latest | |
name: Lint commit messages | |
steps: | |
- name: Check out | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install CZ | |
run: sudo pip3 install -U Commitizen | |
- name: Cz Check | |
run: cz check --rev-range ${{github.event.pull_request.base.sha}}..${{ github.event.pull_request.head.sha }} |