fix: xn→ん の変換が n+子音→ん+子音 の挙動で上書きされてしまう問題を修正 #274
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: Swift Build and Test in DevContainer | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
name: Swift on ubuntu-latest | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Build and Test in DevContainer | |
uses: devcontainers/ci@v0.3 | |
with: | |
push: never | |
runCmd: | | |
swift build -Xswiftc -strict-concurrency=complete -v | |
swift test -c release -Xswiftc -strict-concurrency=complete -v |