File tree Expand file tree Collapse file tree 1 file changed +28
-2
lines changed
Expand file tree Collapse file tree 1 file changed +28
-2
lines changed Original file line number Diff line number Diff line change 1- name : Test
2-
1+ name : Run Checks
32on :
43 pull_request :
4+ branches :
5+ - ' **'
6+
7+ concurrency :
8+ group : ${{ github.workflow }}-${{ github.ref }}
9+ cancel-in-progress : true
510
611jobs :
712 build :
1015 - name : ' Checkout'
1116 uses : actions/checkout@v5
1217
18+ - name : Set up JDK 17
19+ uses : actions/setup-java@v4
20+ with :
21+ java-version : ' 17'
22+ distribution : ' temurin'
23+
24+ - name : Setup Homebrew
25+ uses : Homebrew/actions/setup-homebrew@main
26+
27+ - name : Setup Clang
28+ uses : tecolicom/actions-use-homebrew-tools@v1
29+ with :
30+ tools : clang-format
31+ cache : yes
32+
33+ - name : Link clang-format
34+ run : |
35+ brew link --overwrite --force clang-format >/dev/null
36+ export PATH="/home/linuxbrew/.linuxbrew/bin:$PATH"
37+ clang-format --version
38+
1339 - name : ' Setup Bun'
1440 uses : oven-sh/setup-bun@v2
1541 with :
You can’t perform that action at this time.
0 commit comments