test: 添加FileManager相关的单元测试,包括根目录检查、空目录检测和文件类型识别 #14
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 |