Add favicons, manifest to web client #24
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: apple | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
test: | |
name: test | |
runs-on: macos-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: brew install xcbeautify | |
- name: Run apple client tests | |
working-directory: ./apple | |
run: >- | |
set -o pipefail && xcodebuild test \ | |
-project TRssReader.xcodeproj \ | |
-scheme TRssReaderTests \ | |
-configuration Test \ | |
-sdk iphonesimulator \ | |
-destination 'platform=iOS Simulator,name=iPhone 14' | xcbeautify |