Update CI #61
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: Test | |
on: [push, pull_request] | |
jobs: | |
macOS: | |
name: Test on macOS | |
runs-on: macos-14 | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_16.0-beta.app | |
steps: | |
- name: Show environments | |
run: | | |
swift --version | |
xcodebuild -version | |
- uses: actions/checkout@v1 | |
- name: Lint Swift | |
run: | | |
swiftlint | |
- name: Test SwiftPM | |
run: | | |
swift build | |
swift test |