feat: update action #11
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 CI | |
on: | |
push: | |
branches: | |
- Develope | |
pull_request: | |
branches: | |
- Develope | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: SwiftyLab/setup-swift@latest | |
- name: Get swift version | |
run: swift --version | |
- name: Check Swift version | |
run: swift --version | |
- name: Build Project | |
run: swift build --package-path SwiftErrorArchiver/ | |
- name: Run Tests | |
run: swift test --package-path SwiftErrorArchiver/ |