Hide insertion indicators when editor is inactive #2135
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: Test | |
on: [push, pull_request] | |
jobs: | |
macOS: | |
runs-on: macos-13 | |
steps: | |
- name: Show environments | |
run: | | |
sw_vers | |
xcodebuild -version | |
swift --version | |
- uses: actions/checkout@v1 | |
- name: Checkout submodules | |
run: | | |
git submodule update --init | |
- name: Lint Swift | |
run: | | |
swiftlint | |
- name: Unit Test | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_15.0.app | |
run: | | |
set -o pipefail | |
xcodebuild test -project CotEditor.xcodeproj -scheme CotEditor CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcpretty -c | |
- name: Unit Test for SyntaxMapBuilder | |
run: | | |
cd SyntaxMapBuilder | |
swift build | |
swift test 2>&1 | xcpretty -c |