From a64129d61e38bfdfa856c313df376cdf4e40c027 Mon Sep 17 00:00:00 2001 From: Jacob Heider Date: Sat, 4 Jan 2025 16:05:14 -0500 Subject: [PATCH] use coveralls without a token? --- .github/workflows/test.yml | 5 +++-- .justfile | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0f7ae5e..00d4cfd 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -62,5 +62,6 @@ jobs: run: | cargo install cargo-tarpaulin just coverage - env: - COVERALLS_TOKEN: ${{ secrets.COVERALLS_TOKEN }} + - uses: coverallsapp/github-action@v2 + with: + path-to-lcov: coverage/cov_profile.lcov diff --git a/.justfile b/.justfile index 4a8c061..11b3df7 100644 --- a/.justfile +++ b/.justfile @@ -4,4 +4,4 @@ default: # Generate coverage/lcov.info coverage: - cargo tarpaulin --engine ptrace -o lcov --output-dir coverage --coveralls $COVERALLS_TOKEN \ No newline at end of file + cargo tarpaulin --engine ptrace -o lcov --output-dir coverage \ No newline at end of file