Skip to content

Update CI

Update CI #61

Workflow file for this run

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