diff --git a/.github/workflows/code-coverage.yml b/.github/workflows/code-coverage.yml index dbbe60b..5c6621c 100644 --- a/.github/workflows/code-coverage.yml +++ b/.github/workflows/code-coverage.yml @@ -20,14 +20,9 @@ jobs: run: bb test-coverage - name: Upload Code Coverage Results - run: | - echo "Downloading codecov uploader script" - curl -s https://codecov.io/bash > codecov - echo "Verifying codedov uploader script" - VERSION=$(grep 'VERSION=\".*\"' codecov | cut -d'"' -f2); - for i in 1 256 512 - do - sha${i}sum -c --ignore-missing <(curl -s "https://raw.githubusercontent.com/codecov/codecov-bash/${VERSION}/SHA${i}SUM") - done - echo "Uploading to codecov" - bash codecov -f target/coverage/codecov.json + uses: codecov/codecov-action@v4 + with: + fail_ci_if_error: true # optional (default = false) + file: ./target/coverage/codecov.json + token: ${{ secrets.CODECOV_TOKEN }} # required + verbose: true # optional (default = false) diff --git a/.github/workflows/libs-test.yml b/.github/workflows/libs-test.yml index a8d3bdb..0f75b43 100644 --- a/.github/workflows/libs-test.yml +++ b/.github/workflows/libs-test.yml @@ -1,14 +1,14 @@ name: Libs Test -on: - # allow this workflow to be called from other workflows, namely: publish - workflow_call: - push: - branches: - - main - pull_request: - branches: - - main +# on: +# # allow this workflow to be called from other workflows, namely: publish +# workflow_call: +# push: +# branches: +# - main +# pull_request: +# branches: +# - main jobs: enumerate-libs: diff --git a/.github/workflows/native-image-test.yml b/.github/workflows/native-image-test.yml index 4526ea7..e5e14ea 100644 --- a/.github/workflows/native-image-test.yml +++ b/.github/workflows/native-image-test.yml @@ -1,14 +1,14 @@ name: Native Image Tests -on: - # allow this workflow to be called from other workflows, namely: publish - workflow_call: - push: - branches: - - main - pull_request: - branches: - - main +# on: +# # allow this workflow to be called from other workflows, namely: publish +# workflow_call: +# push: +# branches: +# - main +# pull_request: +# branches: +# - main jobs: build: diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index aed9bab..9cfda83 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -1,14 +1,14 @@ name: Unit Tests -on: - # allow this workflow to be called from other workflows, namely: publish - workflow_call: - push: - branches: - - main - pull_request: - branches: - - main +# on: +# # allow this workflow to be called from other workflows, namely: publish +# workflow_call: +# push: +# branches: +# - main +# pull_request: +# branches: +# - main jobs: setup: