mirror of https://github.com/usbharu/Hideout.git
Merge branch 'develop' into feature/test-serialize
This commit is contained in:
commit
9e7d833a3d
|
@ -13,6 +13,8 @@ on:
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
checks: write
|
||||||
|
id-token: write
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
|
@ -50,7 +52,12 @@ jobs:
|
||||||
with:
|
with:
|
||||||
java-version: '17'
|
java-version: '17'
|
||||||
distribution: 'temurin'
|
distribution: 'temurin'
|
||||||
- name: Gradle Build Action
|
- name: Run JUnit
|
||||||
uses: gradle/gradle-build-action@v2.8.1
|
uses: gradle/gradle-build-action@v2.8.1
|
||||||
with:
|
with:
|
||||||
arguments: test
|
arguments: test
|
||||||
|
- name: Publish Test Report
|
||||||
|
uses: mikepenz/action-junit-report@v2
|
||||||
|
if: always()
|
||||||
|
with:
|
||||||
|
report_paths: '**/build/test-results/test/TEST-*.xml'
|
||||||
|
|
Loading…
Reference in New Issue