Skip to content

Fix unintended timestamp converting #411

Fix unintended timestamp converting

Fix unintended timestamp converting #411

Workflow file for this run

# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Check
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '17'
cache: 'gradle'
- name: Execute check
uses: gradle/[email protected]
with:
arguments: check
- name: Publish test report
uses: mikepenz/[email protected]
if: always() # always run even if the previous step fails
with:
report_paths: '**/build/test-results/test/TEST-*.xml'
- name: Test Summary
uses: test-summary/action@v1
if: always()
with:
paths: '**/build/test-results/test/TEST-*.xml'