Skip to content

Use AsyncSemaphore

Use AsyncSemaphore #50

Workflow file for this run

name: Check PR
on:
pull_request:
branches: ["main"]
jobs:
SwiftLint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: GitHub Action for SwiftLint
uses: norio-nomura/action-swiftlint@3.2.1
with:
args: --strict
RunTests:
runs-on: macos-12
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v3
- name: Build
run: swift build
- name: Install zmq
run: brew install zmq
- name: Run tests
run: swift test --skip AgentTest --skip CredentialsTest --skip LedgerServiceTest --skip OobTest --skip ProofsTest | xcpretty && exit ${PIPESTATUS[0]}