ci: enable commit checker in 'make ci' and github action #55
This file contains hidden or 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: Commit Message Validation | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
commit-message-validation: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: CI/CD commit and code format checking | |
run: | | |
make ci |