Skip to content

Merge remote-tracking branch 'upstream/master' #13

Merge remote-tracking branch 'upstream/master'

Merge remote-tracking branch 'upstream/master' #13

Workflow file for this run

name: Commit CI
on:
push:
branches:
- 'master'
tags:
- '![0-9]+.*'
pull_request:
jobs:
lint:
runs-on: macos-14
steps:
- name: Checkout last commit
uses: actions/checkout@v4
- name: Install clang-format
run: brew install clang-format
- name: 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:
build_variant: '-universal'
rime_plugins: rime/librime-charcode hchunhui/librime-lua lotem/librime-octagram
windows:
needs: lint
uses: ./.github/workflows/windows-build.yml
docker:
needs: lint
uses: ./.github/workflows/docker-build.yml