chore: 更新版本号至0.6.8并优化用户输入处理逻辑 #18
Workflow file for this run
This file contains hidden or 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 | |
on: | |
push: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build_and_test: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Dependencies | |
run: swift package resolve | |
- name: Build | |
run: swift build --configuration release | |
- name: Test | |
run: swift test |