Skip to content

Add workflow

Add workflow #1

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_requuest:
branches:
- master
jobs:
check:
name: Build and test
runs-on: ubuntu-latest
container: archlinux:latest
strategy:
fail-fast: false
matrix:
compiler: [gcc, clang]
include:
- compiler: gcc
cxx_compiler: g++
- compiler: clang
cxx_compiler: clang++
env:
CC: ${{ matrix.compiler }}
CXX: ${{ matrix.cxx_compiler }}
steps:
- name: Install dependencies
run: |
pacman -Syu --noconfirm base-devel clang cmake ninja extra-cmake-modules fmt libuv boost
- uses: actions/checkout@v4
with:
repository: fcitx/fcitx5
path: fcitx5
- name: Cache data files
id: cache data

Check failure on line 37 in .github/workflows/check.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/check.yml (Line: 37, Col: 13): The identifier 'cache data' is invalid. IDs may only contain alphanumeric characters, '_', and '-'. IDs must start with a letter or '_' and and must be less than 100 characters. .github/workflows/check.yml (Line: 59, Col: 13): The identifier 'cache data' is invalid. IDs may only contain alphanumeric characters, '_', and '-'. IDs must start with a letter or '_' and and must be less than 100 characters.
uses: actions/cache@v4
with:
path: 'fcitx5/**/*.tar.*'
key: ${{ runner.os }}-${{ hashFiles('fcitx5/src/module/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
- uses: actions/checkout@v4
with:
path: libime
- name: Cache data files
id: cache data
uses: actions/cache@v4
with:
path: 'libime/**/*.tar.*'
key: ${{ runner.os }}-${{ hashFiles('libime/data/CMakeLists.txt') }}
- name: Init CodeQL
uses: github/codeql-action/init@v3
with:
languages: cpp
source-root: libime
- name: Build and Install libime
uses: fcitx/github-actions@cmake
with:
path: libime
- name: Test
run: |
ctest --test-dir libime/build
- name: CodeQL Analysis
uses: github/codeql-action/analyze@v2