修改了one dark配色中的空格字符的前景色,函数名加粗,对one dark主题配色做了些许调整 #19
Workflow file for this run
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: Unit | |
on: [push, pull_request] | |
jobs: | |
ubuntu_makefile_escape: | |
name: Unix makefile escape | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup xmake | |
uses: xmake-io/github-action-setup-xmake@v1 | |
with: | |
xmake-version: '2.8.6' | |
- name: Setup Qt | |
uses: ConorMacBride/install-package@v1 | |
with: | |
apt: libqt5svg5-dev qtbase5-dev qtbase5-dev-tools qttools5-dev-tools | |
- name: Build | |
run: | | |
xmake f --qt=/usr | |
xmake b test-escape | |
- name: Test | |
run: | | |
export QT_ASSUME_STDERR_HAS_CONSOLE=1 | |
xmake r test-escape |