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