-
Notifications
You must be signed in to change notification settings - Fork 685
44 lines (36 loc) · 896 Bytes
/
commit-ci.yml
File metadata and controls
44 lines (36 loc) · 896 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Commit CI
on:
push:
branches:
- '**'
tags-ignore:
- '**'
pull_request:
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout last commit
uses: actions/checkout@v5
- name: Install clang-format-18
run: |
./action-install-clang-format.sh 18
- name: Code style lint
run: make clang-format-lint
linux:
needs: lint
uses: ./.github/workflows/linux-build.yml
macos:
needs: lint
uses: ./.github/workflows/macos-build.yml
with:
rime_plugins: hchunhui/librime-lua lotem/librime-octagram rime/librime-predict
windows:
needs: lint
uses: ./.github/workflows/windows-build.yml
with:
rime_plugins: hchunhui/librime-lua lotem/librime-octagram rime/librime-predict
docker:
needs: lint
uses: ./.github/workflows/docker-build.yml