Skip to content

Fix incorrect formats for 0 and rounding very small values #62

Fix incorrect formats for 0 and rounding very small values

Fix incorrect formats for 0 and rounding very small values #62

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Java CI with Gradle
on:
push:
branches: [ refactor ]
pull_request:
branches: [ refactor ]
jobs:
build:
strategy:
matrix:
run_number: ['${{ github.run_number }}']
os: [ubuntu-latest, macos-latest, windows-latest]
java: ['17']
include:
- run_number: '${{ github.run_number }}'
os: ubuntu-latest
java: '8'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v2
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
- name: Run Gradle check task
uses: gradle/gradle-build-action@v2
env:
MINECORD_MOJANG_API: "false"
with:
arguments: check
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2