blob: 5f96fbb934426e059c296c1c9bbe284735d52e85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
name: Check commit message formatting
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: '100'
- uses: actions/setup-python@v1
- name: Check commit message formatting
run: source tools/ci.sh && ci_commit_formatting_run
|