Merge commit '802798ce3c8baa4697120580f87bc1ee377306d3' as 'external/capstone'
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
name: Run clang-format-20
|
||||
on:
|
||||
push:
|
||||
paths:
|
||||
- '**.c'
|
||||
- '**.h'
|
||||
# Ignore
|
||||
- '!suite/auto-sync/**'
|
||||
pull_request:
|
||||
|
||||
# Stop previous runs on the same branch on new push
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
analyze:
|
||||
runs-on: ubuntu-24.04
|
||||
|
||||
name: clang-format-20
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: Install clang-format-20
|
||||
run: |
|
||||
sudo apt update -y
|
||||
sudo apt install -y clang-format-20
|
||||
clang-format-20 --version
|
||||
|
||||
- name: Check formatting
|
||||
run: |
|
||||
./suite/run_clang_format.sh
|
||||
Reference in New Issue
Block a user