diff --git a/.github/workflows/ci_test-base.yml b/.github/workflows/ci_test-base.yml index d060f3f70d..019cc747ab 100644 --- a/.github/workflows/ci_test-base.yml +++ b/.github/workflows/ci_test-base.yml @@ -91,7 +91,7 @@ jobs: # see: https://github.com/actions/toolkit/issues/399 continue-on-error: true with: - # token: ${{ secrets.CODECOV_TOKEN }} + token: ${{ secrets.CODECOV_TOKEN }} file: coverage.xml flags: cpu,pytest name: Base-coverage diff --git a/.github/workflows/ci_test-full.yml b/.github/workflows/ci_test-full.yml index c073b8859a..e411e4e3bc 100644 --- a/.github/workflows/ci_test-full.yml +++ b/.github/workflows/ci_test-full.yml @@ -100,7 +100,7 @@ jobs: # see: https://github.com/actions/toolkit/issues/399 continue-on-error: true with: - # token: ${{ secrets.CODECOV_TOKEN }} + token: ${{ secrets.CODECOV_TOKEN }} file: ./coverage.xml flags: unittests env_vars: OS,PYTHON diff --git a/README.md b/README.md index f816660cc3..74314f0f60 100644 --- a/README.md +++ b/README.md @@ -51,20 +51,24 @@ ## Install -Simple installation from PyPI -```bash -pip install lightning-bolts -``` - -Install bleeding-edge (no guarantees) -```bash -pip install git+https://github.com/PytorchLightning/lightning-bolts.git@master --upgrade -``` - -In case you want to have full experience you can install all optional packages at once -```bash -pip install lightning-bolts["extra"] -``` +
+ View install + + Simple installation from PyPI + ```bash + pip install lightning-bolts + ``` + + Install bleeding-edge (no guarantees) + ```bash + pip install git+https://github.com/PytorchLightning/lightning-bolts.git@master --upgrade + ``` + + In case you want to have full experience you can install all optional packages at once + ```bash + pip install lightning-bolts["extra"] + ``` +
## What is Bolts