Skip to content

Improve documentation and example for setDateValue. #8

Improve documentation and example for setDateValue.

Improve documentation and example for setDateValue. #8

Workflow file for this run

name: FastODS
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: '8'
- name: Build with Maven
run: mvn clean install
- name: Check coverage reports
run: ls */target/site/jacoco/jacoco.xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
files: ./fastods-crypto/target/site/jacoco/jacoco.xml,./fastods-extra/target/site/jacoco/jacoco.xml,./fastods/target/site/jacoco/jacoco.xml,./fastods-testlib/target/site/jacoco/jacoco.xml
verbose: true