Skip to content

Fix DateTime initialization and comparison code to deal correctly with half hour and fifteen minute timezones #293

Fix DateTime initialization and comparison code to deal correctly with half hour and fifteen minute timezones

Fix DateTime initialization and comparison code to deal correctly with half hour and fifteen minute timezones #293

Workflow file for this run

name: Check PR
on: pull_request
jobs:
gradle:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 11
- name: Setup and execute Gradle 'check' task
uses: gradle/gradle-build-action@v2
with:
arguments: check -i
build-root-directory: Src/java
- name: Publish Test Report
uses: mikepenz/action-junit-report@v3
if: success() || failure() # always run even if the previous step fails
with:
report_paths: '**/build/test-results/test/TEST-*.xml'