From 4515269233164f92352501bcd2a623c57c2177af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20Verg=C3=A9?= Date: Wed, 24 Mar 2021 16:53:03 +0100 Subject: [PATCH] CI: Fix failing 'coverage' command because of $PATH Very probably due to: https://github.com/actions/virtual-environments/issues/2455#issuecomment-787511010 --- .github/workflows/ci.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 1c473453..4e4b5997 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -45,6 +45,8 @@ jobs: uses: actions/setup-python@v2 with: python-version: ${{ matrix.pyver }} + - name: Fix GitHub Actions path + run: echo /home/runner/.local/bin >>$GITHUB_PATH - run: python -m pip install coveralls - run: python -m pip install . - run: coverage run --source=yamllint -m unittest discover