Skip to content

fix: generateAddressFromPubKey and tests #230

fix: generateAddressFromPubKey and tests

fix: generateAddressFromPubKey and tests #230

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches:
- master
pull_request:
branches:
- master
- alpha
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# 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
scheme: TorusUtils
code-coverage: true
upload-logs: always