2021-01-19 14:06:50 +00:00
|
|
|
name: Check commit message formatting
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
2022-12-13 18:57:34 +00:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2021-01-19 14:06:50 +00:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-11-10 15:50:38 +00:00
|
|
|
- uses: actions/checkout@v3
|
2021-01-19 14:06:50 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: '100'
|
2022-11-11 02:27:28 +00:00
|
|
|
- uses: actions/setup-python@v4
|
2021-01-19 14:06:50 +00:00
|
|
|
- name: Check commit message formatting
|
|
|
|
run: source tools/ci.sh && ci_commit_formatting_run
|