Apply keyboard side padding to preedit #290
This file contains 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: Nix | |
on: | |
pull_request: | |
push: | |
branches: [master] | |
jobs: | |
develop: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macOS-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Fetch source code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: recursive | |
- uses: cachix/install-nix-action@v24 | |
with: | |
github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: cachix/cachix-action@v13 | |
with: | |
name: fcitx5-android | |
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}" | |
- name: Build Debug APK | |
run: | | |
nix develop .#noAS --command ./gradlew :app:assembleDebug | |
nix develop .#noAS --command ./gradlew :assembleDebugPlugins |