feat: 引入 SuperFilter (超级滤镜) —— 高自定义、高性能的流水线候选词处理引擎 #1167
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 | |
| windows: | |
| needs: lint | |
| uses: ./.github/workflows/windows-build.yml | |
| docker: | |
| needs: lint | |
| uses: ./.github/workflows/docker-build.yml |