Skip to content

build: fix workflow

build: fix workflow #9

Workflow file for this run

# This workflow will build a Swift project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift
name: Swift
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: macos-13
steps:
- uses: actions/checkout@v3
- name: Build
run: xcodebuild build test -scheme "peerdid-swift" -destination "platform=macOS" -resultBundlePath TestResults
- name: Publish tests results
uses: kishikawakatsumi/xcresulttool@v1.7.1
with:
path: TestResults.xcresult
show-code-coverage: true
if: success() || failure()