summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorSamuel <samuel.woon@protonmail.com>2020-12-03 02:00:35 -0600
committerSamuel <samuel.woon@protonmail.com>2020-12-03 23:38:17 -0600
commit9fa28dfee791cfcaf0f858f5f76fdea7c0fb133b (patch)
tree248f334064c81ce58e3261059cb44c1f9db0cf93 /.github
parentdcecc149d8dd751faae826d7be617da3da9a09de (diff)
Upload coverage reports to codecov
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml10
1 files changed, 9 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 50b9aa4d9..37a1dbeb6 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -110,7 +110,7 @@ jobs:
brew install zstd || brew upgrade zstd
brew install lz4 || brew upgrade lz4
brew install openssl@1.1 || brew upgrade openssl@1.1
- brew install Caskroom/cask/osxfuse || brew upgrade Caskroom/cask/osxfuse # Required for Python llfuse module
+ brew install homebrew/cask/osxfuse || brew upgrade homebrew/cask/osxfuse # Required for Python llfuse module
- name: Install Python requirements
run: |
@@ -125,3 +125,11 @@ jobs:
# do not use fakeroot, but run as root. avoids the dreaded EISDIR sporadic failures. see #2482.
#sudo -E bash -c "tox -e py"
tox --skip-missing-interpreters
+ - name: Upload coverage to Codecov
+ uses: codecov/codecov-action@v1
+ env:
+ OS: ${{ runner.os }}
+ python: ${{ matrix.python-version }}
+ with:
+ token: ${{ secrets.CODECOV_TOKEN }}
+ env_vars: OS, python