Merge pull request #1 from tkey/feat/tx-signing #32
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
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
jobs: | |
test: | |
runs-on: macos-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: xcode | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: "14.2.0" | |
- name: package | |
run: xcodebuild test -scheme Web3SwiftMpcProvider -destination "platform=iOS Simulator,OS=16.2,name=iPhone 14" COMPILER_INDEX_STORE_ENABLE=NO | |
- name: SwiftLint | |
run: swiftlint lint ./Sources --reporter github-actions-logging |