From a9227f709ab251d713aaecf69ec2534314baf9ee Mon Sep 17 00:00:00 2001 From: pit-ray Date: Tue, 13 Feb 2024 04:08:12 +0900 Subject: [PATCH] use 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 b207ff9..387956a 100644 --- a/.github/workflows/coveralls.yml +++ b/.github/workflows/coveralls.yml @@ -46,7 +46,7 @@ jobs: arch: x64 - name: Install cpp-coveralls - run: pip install --user cpp-coveralls + run: python -m pip install --user cpp-coveralls - name: Setup Dependencies shell: powershell @@ -73,4 +73,4 @@ jobs: tar xvf build_test/gcov.tar.gz - name: Submit the gcov into the Coveralls - run: coveralls -i Testing/CoverageInfo/fluent_tray.hpp.gcov -t ${{env.TOKEN}} + run: python -m coveralls -i Testing/CoverageInfo/fluent_tray.hpp.gcov -t ${{env.TOKEN}}