From bca16cbc2e829bc53b3e0e63cc536e2733812cdf Mon Sep 17 00:00:00 2001 From: pit-ray Date: Tue, 13 Feb 2024 04:35:51 +0900 Subject: [PATCH] remove python -m --- .github/workflows/coveralls.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/coveralls.yml b/.github/workflows/coveralls.yml index 1152d9d..513b4b6 100644 --- a/.github/workflows/coveralls.yml +++ b/.github/workflows/coveralls.yml @@ -66,5 +66,5 @@ jobs: - name: Submit results to Coveralls using cpp-coveralls run: | - python3 -m pip install cpp-coveralls - python3 -m coveralls -r ./ -E ".*/tests/.*" -E ".*/build_test/.*" -E ".*/demo/.*" t ${{env.TOKEN}} + pip install cpp-coveralls + coveralls -r ./ -E ".*/tests/.*" -E ".*/build_test/.*" -E ".*/demo/.*" t ${{env.TOKEN}}