chore: clean up docs #31
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: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
workflow_call: | |
jobs: | |
conventional-commits: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
# By default, checkout only fetches the latest commit. We need more history, setting | |
# fetch-depth to 0 will fetch all commits of the project. | |
fetch-depth: 0 | |
- run: pip3 install -U Commitizen | |
- run: cz --no-raise 3 check --rev-range cb603df..HEAD |