Skip to content

Commit a81b3d4

Browse files
committed
Merge branch 'master' into ci/visionos
wip
2 parents 887b56a + 2c6b476 commit a81b3d4

File tree

3 files changed

+84
-1
lines changed

3 files changed

+84
-1
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
name: Bug Report
2+
description: Something isn't working as expected
3+
labels: [bug]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thank you for contributing to SwiftUI Introspect!
9+
10+
Before you submit your issue, please complete each text area below with the relevant details for your bug, and complete the steps in the checklist.
11+
- type: textarea
12+
attributes:
13+
label: Description
14+
description: |
15+
A short description of the incorrect behavior.
16+
17+
If you think this issue has been recently introduced and did not occur in an earlier version, please note that. If possible, include the last version that the behavior was correct in addition to your current version.
18+
validations:
19+
required: true
20+
- type: checkboxes
21+
attributes:
22+
label: Checklist
23+
options:
24+
- label: I have read the [README](https://github.com/siteline/swiftui-introspect#swiftui-introspect) before submitting this report.
25+
required: true
26+
- label: This issue hasn't been addressed in an [existing GitHub issue](https://github.com/siteline/swiftui-introspect/issues) or [discussion](https://github.com/siteline/swiftui-introspect/discussions).
27+
required: true
28+
- type: textarea
29+
attributes:
30+
label: Expected behavior
31+
description: Describe what you expected to happen.
32+
validations:
33+
required: false
34+
- type: textarea
35+
attributes:
36+
label: Actual behavior
37+
description: Describe or copy/paste the behavior you observe.
38+
validations:
39+
required: false
40+
- type: textarea
41+
attributes:
42+
label: Steps to reproduce
43+
description: |
44+
Explanation of how to reproduce the incorrect behavior.
45+
46+
This could include an attached project or link to code that is exhibiting the issue, and/or a screen recording.
47+
placeholder: |
48+
1. ...
49+
validations:
50+
required: false
51+
- type: input
52+
attributes:
53+
label: Version information
54+
description: The version of SwiftUIIntrospect used to reproduce this issue.
55+
placeholder: "'0.11.0' for example, or a commit hash"
56+
- type: input
57+
attributes:
58+
label: Destination operating system
59+
description: The OS running the SwiftUIIntrospect module.
60+
placeholder: "'iOS 17' for example"
61+
- type: input
62+
attributes:
63+
label: Xcode version information
64+
description: The version of Xcode used to reproduce this issue.
65+
placeholder: "The version displayed from 'Xcode 〉About Xcode'"
66+
- type: textarea
67+
attributes:
68+
label: Swift Compiler version information
69+
description: The version of Swift used to reproduce this issue.
70+
placeholder: Output from 'xcrun swiftc --version'
71+
render: shell

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
blank_issues_enabled: false
2+
3+
contact_links:
4+
- name: Project Discussion
5+
url: https://github.com/siteline/swiftui-introspect/discussions
6+
about: Q&A, ideas, and more
7+
- name: Documentation
8+
url: https://github.com/siteline/swiftui-introspect#swiftui-introspect
9+
about: Read SwiftUI Introspect's documentation

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,6 @@ jobs:
108108
runtime: visionOS 1.0-beta2
109109
os: macos-13
110110
xcode: 15.0
111-
install: true
112111
steps:
113112
- name: Git Checkout
114113
uses: actions/checkout@v3
@@ -130,6 +129,10 @@ jobs:
130129
max_attempts: 3
131130
command: sudo xcodes runtimes install '${{ matrix.runtime }}'
132131

132+
- if: ${{ matrix.platform[0] != 'visionos' }}
133+
name: Install visionOS Runtime
134+
run: xcodebuild -downloadPlatform visionOS
135+
133136
- if: false
134137
name: '[Debug] List Available Runtimes, Simulators, and Destinations'
135138
run: |

0 commit comments

Comments
 (0)