From 1c4a4261fac1bbb109d7899828c6ede29ed37f5e Mon Sep 17 00:00:00 2001 From: Ibrahim Ali Date: Sun, 25 Aug 2019 14:50:59 -0700 Subject: [PATCH] update installation docs to latest MP version --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 05d2ec5..26b7636 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Codecov GitHub Action -[![GitHub Marketplace](https://img.shields.io/badge/Marketplace-v1.0.0-undefined.svg?logo=github&logoColor=white&style=flat)](https://github.com/marketplace/actions/codecov) +[![GitHub Marketplace](https://img.shields.io/badge/Marketplace-v1.0.2-undefined.svg?logo=github&logoColor=white&style=flat)](https://github.com/marketplace/actions/codecov) ### Easily upload coverage reports to Codecov from GitHub Actions ## Usage @@ -12,7 +12,7 @@ Inside your `.github/workflows/workflow.yml` file: ```yaml steps: - uses: actions/checkout@master -- uses: codecov/codecov-action@v1.0.0 +- uses: codecov/codecov-action@v1.0.2 with: token: ${{secrets.CODECOV_TOKEN}} #required file: ./coverage.xml #optional @@ -52,7 +52,7 @@ jobs: pip install pytest-cov pytest --cov=./ --cov-report=xml - name: Upload coverage to Codecov - uses: codecov/codecov-action@v1.0.0 + uses: codecov/codecov-action@v1.0.2 with: token: ${{secrets.CODECOV_TOKEN}} file: ./coverage.xml