Skip to content

Commit

Permalink
[ZEUS-4454] Added script to generate missing file for Folder structure
Browse files Browse the repository at this point in the history
  • Loading branch information
KharchenkoAlex committed Jul 1, 2024
1 parent 8f67133 commit 84cbddc
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ jobs:
- name: Clean DerivedData
run: rm -rf ~/Library/Developer/Xcode/DerivedData

- name: Checkout code
- uses: actions/checkout@v4

- name: Generate Folder Structure
run: bash generate_folder_structure.sh

- name: Build and run tests
run: xcodebuild test -scheme PlaybackSDK -destination 'platform=iOS Simulator,name=iPhone 13'
6 changes: 6 additions & 0 deletions generate_folder_structure.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/bash

echo "# Folder Structure" > Tests/PlaybackSDKTests/Folder\ Structure.md
echo "" >> Tests/PlaybackSDKTests/Folder\ Structure.md
echo "This file represents the folder structure of the project." >> Tests/PlaybackSDKTests/Folder\ Structure.md
echo "You can update it with the actual structure if needed." >> Tests/PlaybackSDKTests/Folder\ Structure.md

0 comments on commit 84cbddc

Please sign in to comment.