Skip to content

Commit

Permalink
build: fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
beatt83 committed Jan 28, 2024
1 parent bcc3b57 commit 100e816
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,17 @@ on:
jobs:
build:

runs-on: macos-latest
runs-on: macos-13

steps:
- uses: actions/checkout@v3
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v
run: xcodebuild build test -scheme "peerdid-swift" -destination "platform=macOS" -resultBundlePath TestResults

- name: Publish tests results
uses: kishikawakatsumi/[email protected]
with:
path: TestResults.xcresult
show-code-coverage: true
if: success() || failure()

0 comments on commit 100e816

Please sign in to comment.