ada76021c0
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 1 or 2 to 4. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v2...v4) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
15 lines
327 B
YAML
15 lines
327 B
YAML
name: Check commit message formatting
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: '100'
|
|
- uses: actions/setup-python@v4
|
|
- name: Check commit message formatting
|
|
run: source tools/ci.sh && ci_commit_formatting_run
|