Skip to content

Merge pull request #50 from torusresearch/encapsulate_torusnetwork #141

Merge pull request #50 from torusresearch/encapsulate_torusnetwork

Merge pull request #50 from torusresearch/encapsulate_torusnetwork #141

Workflow file for this run

name: Unit Test
# Run unit tests on every push or pull request, to main or develop
on:
push:
branches:
- master
- develop
pull_request:
branches:
- master
- develop
# Checkout the code, and run mxcl's xcodebuild action to run the unit tests
jobs:
build:
runs-on: macOS-latest
strategy:
matrix:
platform:
- iOS
steps:
- uses: actions/[email protected]
- uses: mxcl/xcodebuild@v1
with:
platform: ${{ matrix.platform }}
action: test
code-coverage: true