Skip to content

Move package-dependencies related code to separate SpeziLicense package #11

Move package-dependencies related code to separate SpeziLicense package

Move package-dependencies related code to separate SpeziLicense package #11

Workflow file for this run

#
# This source file is part of the TemplatePackage open source project
#
# SPDX-FileCopyrightText: 2022 Stanford University and the project authors (see CONTRIBUTORS.md)
#
# SPDX-License-Identifier: MIT
#
name: Build and Test
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
packageios:
name: Build and Test Swift Package iOS
uses: StanfordBDHG/.github/.github/workflows/xcodebuild-or-fastlane.yml@v2
with:
scheme: SpeziLicense
artifactname: SpeziLicense.xcresult
ios:
name: Build and Test iOS
uses: StanfordBDHG/.github/.github/workflows/xcodebuild-or-fastlane.yml@v2
with:
path: 'Tests/UITests'
scheme: TestApp
artifactname: TestApp.xcresult
xcargs: '-skipPackagePluginValidation'

Check failure on line 32 in .github/workflows/build-and-test.yml

View workflow run for this annotation

GitHub Actions / Build and Test

Invalid workflow file

The workflow is not valid. .github/workflows/build-and-test.yml (Line: 32, Col: 15): Invalid input, xcargs is not defined in the referenced workflow.
uploadcoveragereport:
name: Upload Coverage Report
needs: [packageios, ios]
uses: StanfordBDHG/.github/.github/workflows/create-and-upload-coverage-report.yml@v2
with:
coveragereports: SpeziLicense.xcresult TestApp.xcresult