feat: 更新版本号至0.6.7并添加命令别名 #9
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 | |
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 |