Skip to content

Commit

Permalink
Add clang format to action
Browse files Browse the repository at this point in the history
  • Loading branch information
wengxt committed May 20, 2024
1 parent 9c9c7a7 commit 2b8628e
Showing 1 changed file with 17 additions and 14 deletions.
31 changes: 17 additions & 14 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,26 @@
name: CI

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
clang-format:
name: Check clang-format
runs-on: ubuntu-latest
container: archlinux:latest
steps:
- name: Install dependencies
run: |
pacman -Syu --noconfirm git clang diffutils
git config --global --add safe.directory $GITHUB_WORKSPACE
- uses: actions/checkout@v4
- uses: fcitx/github-actions@clang-format
check:
name: Build and test
needs: clang-format
runs-on: ubuntu-latest
container: archlinux:latest
strategy:
Expand All @@ -37,20 +47,15 @@ jobs:
uses: actions/cache@v4
with:
path: 'fcitx5/**/*.tar.*'
key: ${{ runner.os }}-${{ hashFiles('fcitx5/src/modules/spell/CMakeLists.txt') }}
key: ${{ runner.os }}-${{ hashFiles('fcitx5/src/modules/spell/CMakeLists.txt')
}}
- name: Build and Install fcitx5
uses: fcitx/github-actions@cmake
with:
path: fcitx5
cmake-option: >-
-DENABLE_KEYBOARD=Off
-DENABLE_X11=Off
-DENABLE_WAYLAND=Off
-DENABLE_ENCHANT=Off
-DENABLE_DBUS=Off
-DENABLE_SERVER=Off
-DENABLE_EMOJI=Off
-DUSE_SYSTEMD=Off
-DENABLE_KEYBOARD=Off -DENABLE_X11=Off -DENABLE_WAYLAND=Off -DENABLE_ENCHANT=Off
-DENABLE_DBUS=Off -DENABLE_SERVER=Off -DENABLE_EMOJI=Off -DUSE_SYSTEMD=Off
- uses: actions/checkout@v4
with:
repository: fcitx/libime
Expand Down Expand Up @@ -84,9 +89,7 @@ jobs:
repository: fcitx/fcitx5-qt
path: fcitx5-qt
cmake-option: >-
-DENABLE_QT4=Off
-DENABLE_QT5=Off
-DENABLE_QT6=On
-DENABLE_QT4=Off -DENABLE_QT5=Off -DENABLE_QT6=On
- uses: actions/checkout@v4
with:
path: fcitx5-chinese-addons
Expand Down

0 comments on commit 2b8628e

Please sign in to comment.