diff --git a/.github/ISSUE_TEMPLATE/Bug_report.md b/.github/ISSUE_TEMPLATE/Bug_report.md new file mode 100644 index 00000000..349f177f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/Bug_report.md @@ -0,0 +1,29 @@ +--- +name: Bug report 🐛 +about: You're having technical issues +labels: 'type: bug' +--- + + + +## Expected Behavior + + +## Current Behavior + + +## Possible Solution + + +## Steps to Reproduce + + +1. +2. +3. +4. + +## Environment +- Unity Plugin Version: +- Device: +- Device OS and Version: diff --git a/.github/ISSUE_TEMPLATE/Feature_request.md b/.github/ISSUE_TEMPLATE/Feature_request.md new file mode 100644 index 00000000..4c893f4d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/Feature_request.md @@ -0,0 +1,15 @@ +--- +name: Feature Request 🚀 +about: You'd like something added to the plugin +labels: 'type: feature request' +--- + + + +## Summary + + + +## Motivations + + diff --git a/.github/ISSUE_TEMPLATE/Question.md b/.github/ISSUE_TEMPLATE/Question.md new file mode 100644 index 00000000..4fc7a0fa --- /dev/null +++ b/.github/ISSUE_TEMPLATE/Question.md @@ -0,0 +1,9 @@ +--- +name: Question ❓ +about: Ask a question +labels: 'question' +--- + +## Summary + + diff --git a/.github/workflows/pull-request-test.yml b/.github/workflows/pull-request-test.yml new file mode 100644 index 00000000..7d9d8130 --- /dev/null +++ b/.github/workflows/pull-request-test.yml @@ -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 \ No newline at end of file