Skip to content

Maintaining conditional execution code consistency depending on hands… #21

Maintaining conditional execution code consistency depending on hands…

Maintaining conditional execution code consistency depending on hands… #21

Workflow file for this run

name: Check PR
on:
pull_request:
paths:
- 'Sources/AriesFramework/**'
jobs:
SwiftLint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: GitHub Action for SwiftLint
uses: norio-nomura/action-swiftlint@3.2.1
with:
args: --strict
RunTests:
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- name: Build
run: swift build
- name: Run tests
run: swift test --skip AgentTest --skip CredentialsTest --skip LedgerServiceTest --skip OobTest --skip ProofsTest --skip RevocationTest --skip testCredentialDeclinedProblemReport --skip testProofDeclinedProblemReport --skip ConnectionlessExchangeTest | xcpretty && exit ${PIPESTATUS[0]}