diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4fa3753..4fb8893 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,4 +18,19 @@ jobs: - name: code coverage uses: coverallsapp/github-action@v2 with: - file: "**/target/site/jacoco/jacoco.xml" + file: fastexcel-reader/target/site/jacoco/jacoco.xml + format: jacoco + flag-name: reader + parallel: true + + - name: code coverage (fastexcel-writer) + uses: coverallsapp/github-action@v2 + with: + file: fastexcel-writer/target/site/jacoco/jacoco.xml + format: jacoco + flag-name: writer + parallel: true + + - uses: coverallsapp/github-action@v2 + with: + parallel-finished: true diff --git a/.gitignore b/.gitignore index 2a789d8..636a3c9 100644 --- a/.gitignore +++ b/.gitignore @@ -23,3 +23,4 @@ jmh.csv .project .classpath .settings +/target