Add "让 pyim 在 Termux Emacs 中正常工作" to README, #484 #630
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: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
emacs_version: [27.1, 28.1, 29.1, release-snapshot, snapshot] | |
steps: | |
- uses: purcell/setup-emacs@master | |
with: | |
version: ${{ matrix.emacs_version }} | |
- uses: actions/checkout@v2 | |
- name: Print emacs version | |
run: emacs --version | |
- name: Run tests | |
run: make test |