Skip to content

fix: properly write digit separators #53

fix: properly write digit separators

fix: properly write digit separators #53

Workflow file for this run

name: Maven CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up JDK 11
uses: actions/setup-java@v5
with:
java-version: '11'
distribution: 'adopt'
cache: maven
- name: Build with Maven
run: mvn --batch-mode --fail-at-end --update-snapshots verify
- name: Publish Test-Report
if: ${{ always() }}
uses: scacap/action-surefire-report@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: ./target/site/jacoco/
fail_ci_if_error: true
verbose: true