From 8d062b28e11a2e28f19a70e04bc2a125a1f83385 Mon Sep 17 00:00:00 2001 From: Ibrahim Ali Date: Sun, 17 Nov 2019 10:35:11 -0800 Subject: [PATCH] Add if conditional in example for linux --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a8bb866..0f6dc1f 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,8 @@ jobs: pip install pytest pip install pytest-cov pytest --cov=./ --cov-report=xml - - name: Upload coverage to Codecov + - name: Upload coverage to Codecov + if: runner.os == 'Linux' uses: codecov/codecov-action@v1.0.3 with: token: ${{secrets.CODECOV_TOKEN}}