diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 4c647db..7eaed3b 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -37,10 +37,11 @@ jobs: - name: Test with pytest and coverage run: | pytest --cov=scraper --cov-report=xml --cov-report=term-missing --cov-fail-under=70 - - name: Upload coverage report to Codecov + - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v5 with: + token: ${{ secrets.CODECOV_TOKEN }} + slug: spiralhouse/scraper file: ./coverage.xml fail_ci_if_error: true - token: ${{ secrets.CODECOV_TOKEN }} verbose: true diff --git a/README.md b/README.md index f36315b..924d964 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Scraper -[![Python Tests](https://github.com/johnburbridge/scraper/actions/workflows/python-package.yml/badge.svg)](https://github.com/johnburbridge/scraper/actions/workflows/python-package.yml) -[![Coverage](https://codecov.io/gh/johnburbridge/scraper/branch/main/graph/badge.svg)](https://codecov.io/gh/johnburbridge/scraper) +[![Python Tests](https://github.com/spiralhouse/scraper/actions/workflows/python-package.yml/badge.svg)](https://github.com/spiralhouse/scraper/actions/workflows/python-package.yml) +[![Coverage](https://codecov.io/gh/spiralhouse/scraper/branch/main/graph/badge.svg)](https://codecov.io/gh/spiralhouse/scraper) A flexible web crawler that recursively crawls websites, respects robots.txt, and provides various output options. @@ -15,7 +15,7 @@ A flexible web crawler that recursively crawls websites, respects robots.txt, an 1. Clone the repository: ```bash -git clone https://github.com/johnburbridge/scraper.git +git clone https://github.com/spiralhouse/scraper.git cd scraper ``` diff --git a/docs/develop.md b/docs/develop.md index 842eed5..6ef135b 100644 --- a/docs/develop.md +++ b/docs/develop.md @@ -16,7 +16,7 @@ This guide provides instructions for setting up a development environment, runni 1. Clone the repository: ```bash -git clone https://github.com/johnburbridge/scraper.git +git clone https://github.com/spiralhouse/scraper.git cd scraper ```