Skip to content

Commit

Permalink
Remove mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
AkaLrz committed Aug 22, 2024
1 parent 74bfd8c commit 445cc97
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions .github/workflows/jacoco.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -36,15 +34,6 @@ jobs:
java-version: 8
cache: 'maven'

# - name: Build with Maven on Jacoco-exec
# run: ./mvnw --show-version --batch-mode --no-transfer-progress verify -Dmaven.test.failure.ignore=true -DfailIfNoTests=false -Dsurefire.failIfNoSpecifiedTests=false
#
# - name: Make script executable
# run: chmod +x ./.github/workflows/resources/scripts/unit-test-coverage-merge/code-coverage-merge.sh
#
# - name: Run code coverage merge script
# run: ./.github/workflows/resources/scripts/unit-test-coverage-merge/code-coverage-merge.sh ${{ github.workspace }}

- name: Build with Maven and Run Code Coverage Merge Script
run: |
./mvnw --show-version --batch-mode --no-transfer-progress verify -Dmaven.test.failure.ignore=true -DfailIfNoTests=false -Dsurefire.failIfNoSpecifiedTests=false &&
Expand All @@ -54,4 +43,5 @@ jobs:
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ${{ github.workspace }}/target/mergeReport/jacoco.xml

0 comments on commit 445cc97

Please sign in to comment.