Merge pull request #1387 from ailin-nemui/textbufferview

Textbufferview

(cherry picked from commit 783dd37533)
This commit is contained in:
ailin-nemui 2022-06-18 12:42:47 +02:00 committed by Ailin Nemui
commit f17fb68257
3 changed files with 37 additions and 24 deletions

View file

@ -2,10 +2,10 @@ on: [pull_request]
name: clang-format
jobs:
check-clang-format:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: install clang-format
run: sudo apt install clang-format-11
run: sudo apt install clang-format-14
- uses: actions/checkout@main
- name: fetch target ref
run:
@ -20,7 +20,7 @@ jobs:
- name: run git-clang-format and Check if no changes are needed
run:
|
CLANG_FORMAT=clang-format-11 git-clang-format-11 --diff FETCH_HEAD HEAD | tee git-clang-format.diff
CLANG_FORMAT=clang-format-14 git-clang-format-14 --diff FETCH_HEAD HEAD | tee git-clang-format.diff
cmp -s <(echo no modified files to format) git-clang-format.diff || cmp -s <(echo -n) git-clang-format.diff
- uses: actions/upload-artifact@v1
if: failure()