Changed default encoding to JSONEncoder (removed BSONCoder). Adjusted… #4
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: Fridge Mac build | |
on: | |
push: | |
branches: [ main, development ] | |
pull_request: | |
branches: [ main, development ] | |
jobs: | |
tests-macos: | |
runs-on: macos-latest | |
name: macOS Simulators | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Mac x86_64 | |
run: xcodebuild clean test -scheme "Fridge" -destination "platform=macOS,arch=x86_64" | |
- name: Mac Catalyst | |
run: xcodebuild clean test -scheme "Fridge" -destination "platform=macOS,arch=x86_64,variant=Mac Catalyst" | |
- name: DriverKit | |
run: xcodebuild clean test -scheme "Fridge" -destination "platform=macOS,arch=x86_64,variant=DriverKit" |