Add 禁用 / 停用 in TWPhrasesIT (#810) #683
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: C/C++ CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install doxygen | |
run: sudo apt-get install doxygen | |
- name: make build | |
run: make build VERBOSE=1 | |
- name: make test | |
run: make test VERBOSE=1 | |
- name: make benchmark | |
run: make benchmark VERBOSE=1 |