Updating Package.swift file. Ref: #53284 #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: "Unit Tests" | |
on: [push] | |
# The purpose of this workflow is to run unit tests on beta versions of | |
# Xcode and iOS that have not yet been added to Bugsnag's Buildkite. | |
jobs: | |
build: | |
runs-on: macos-11 | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_13.0.app | |
PLATFORM: iOS | |
OS: "15.0" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Unit Tests | |
run: make test | |
- name: Archive xcodebuild output | |
uses: actions/upload-artifact@v2 | |
with: | |
name: xcodebuild-${{ env.PLATFORM }}-${{ env.OS }}-${{ github.run_id }} | |
path: xcodebuild.log |