Skip to content

Commit

Permalink
commit src
Browse files Browse the repository at this point in the history
  • Loading branch information
danh-ld committed Sep 10, 2023
1 parent a2fa271 commit 5f03be6
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,18 @@ jobs:
runs-on: macOS-latest
# Contains a sequence of tasks.
steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Set Xcode version
run: sudo xcode-select -switch /Applications/Xcode_12.4.app
run: |
echo "Available Xcode versions:"
ls /Applications | grep Xcode
sudo xcode-select -switch /Applications/Xcode_12.4.app/Contents/Developer
- name: Print Xcode version
run: |
xcodebuild -version
# A name for your step to display on GitHub.
- name: "List all simulators"
run: "xcrun instruments -s"
Expand Down

0 comments on commit 5f03be6

Please sign in to comment.