Merge branch '14.0' into 14.0_MIG_web_widget_mermaid

This commit is contained in:
Maxime Chambreuil
2022-11-12 14:21:06 -06:00
committed by GitHub
641 changed files with 71237 additions and 18878 deletions

View File

@@ -2,7 +2,12 @@ name: pre-commit
on:
pull_request:
branches:
- "14.0*"
push:
branches:
- "14.0"
- "14.0-ocabot-*"
jobs:
pre-commit:
@@ -12,4 +17,21 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- uses: pre-commit/action@v2.0.0
- name: Get python version
run: echo "PY=$(python -VV | sha256sum | cut -d' ' -f1)" >> $GITHUB_ENV
- uses: actions/cache@v1
with:
path: ~/.cache/pre-commit
key: pre-commit|${{ env.PY }}|${{ hashFiles('.pre-commit-config.yaml') }}
- name: Install pre-commit
run: pip install pre-commit
- name: Run pre-commit
run: pre-commit run --all-files --show-diff-on-failure --color=always
- name: Check that all files generated by pre-commit are in git
run: |
newfiles="$(git ls-files --others --exclude-from=.gitignore)"
if [ "$newfiles" != "" ] ; then
echo "Please check-in the following files:"
echo "$newfiles"
exit 1
fi