Skip to content

002 add pppc keys

002 add pppc keys #67

Workflow file for this run

name: Tests
on:
pull_request:
paths:
- '.github/workflows/tests.yml'
- '**/*.swift'
permissions:
contents: read
jobs:
unit-tests:
runs-on: macos-26
steps:
- uses: actions/checkout@v4
- name: Run unit tests
run: |
xcodebuild test \
-project "PPPC Utility.xcodeproj" \
-scheme "PPPC Utility" \
-destination "platform=macOS" \
CODE_SIGN_IDENTITY="-" \
CODE_SIGNING_REQUIRED=NO
ui-tests:
runs-on: macos-26
steps:
- uses: actions/checkout@v4
- name: Run UI tests
run: |
xcodebuild test \
-project "PPPC Utility.xcodeproj" \
-scheme "PPPC Utility UI Tests" \
-destination "platform=macOS" \
CODE_SIGN_IDENTITY="-" \
CODE_SIGNING_REQUIRED=NO