-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add basic test action and issue templates (#9)
- Loading branch information
1 parent
a8a8dc9
commit e72c608
Showing
4 changed files
with
69 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
--- | ||
name: Bug report 🐛 | ||
about: You're having technical issues | ||
labels: 'type: bug' | ||
--- | ||
|
||
<!--- Please fill out the template to the best of your ability --> | ||
|
||
## Expected Behavior | ||
<!--- What should have happened? --> | ||
|
||
## Current Behavior | ||
<!--- What went wrong? --> | ||
|
||
## Possible Solution | ||
<!--- (Not obligatory) Suggest a fix/reason --> | ||
|
||
## Steps to Reproduce | ||
<!--- Please provide a clear sequence of steps to reproduce this bug --> | ||
<!--- Include code and images, if relevant --> | ||
1. | ||
2. | ||
3. | ||
4. | ||
|
||
## Environment | ||
- Unity Plugin Version: <!--- E.g. v1.6.0 --> | ||
- Device: <!-- E.g. iPhone 11, Samsung Galaxy S20 --> | ||
- Device OS and Version: <!-- E.g. iOS 13.3.1, Android 8.1.0 --> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
name: Feature Request 🚀 | ||
about: You'd like something added to the plugin | ||
labels: 'type: feature request' | ||
--- | ||
|
||
<!--- Please fill out the template to the best of your ability --> | ||
|
||
## Summary | ||
|
||
<!-- Please describe what feature you would like added --> | ||
|
||
## Motivations | ||
|
||
<!-- Please explain what value this feature would add. E.g. what problem does it solve --> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
name: Question ❓ | ||
about: Ask a question | ||
labels: 'question' | ||
--- | ||
|
||
## Summary | ||
|
||
<!-- What do you need help with? --> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: Test | ||
|
||
on: [pull_request] | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: '11' | ||
distribution: 'zulu' | ||
- uses: actions/checkout@v2 | ||
- name: Unit Test | ||
run: ./gradlew testDebugUnitTest |