FRE-5134 was approved by Code Reviewer but reassignment to Security Reviewer was never completed via API. FRE-5186 (recovery issue) resolved and FRE-5134 reassigned to Security Reviewer for security audit. - FRE-5186 marked DONE with recovery plan - FRE-5134 reassigned from Code Reviewer to Security Reviewer (036d6925-3aac-4939-a0f0-22dc44e618bc) - FRE-5134 status set to in_progress for security audit
37 lines
803 B
YAML
37 lines
803 B
YAML
name: Nessa Phase 1 Tests
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- 'NessaTests/**'
|
|
- 'Nessa.xcodeproj/**'
|
|
pull_request:
|
|
paths:
|
|
- 'NessaTests/**'
|
|
- 'Nessa.xcodeproj/**'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: [self-hosted, macOS]
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Select Xcode
|
|
run: |
|
|
sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
|
|
xcodebuild -version
|
|
|
|
- name: Run Phase 1 Tests
|
|
run: |
|
|
xcodebuild test \
|
|
-project Nessa.xcodeproj \
|
|
-scheme Nessa \
|
|
-destination "platform=iOS Simulator,name=iPhone 16"
|
|
|
|
- name: Test Report
|
|
if: always()
|
|
run: |
|
|
echo "Tests completed with status: ${{ job.status }}"
|