Deal with your client's feedback efficiently by creating a bunch of issues in bulk from a text file

👷 Upload coverage to codecov

Changed files
+6
.github
workflows
+6
.github/workflows/ci.yml
··· 25 25 - name: Build Python package and publish to PyPI 26 26 if: startsWith(github.ref, 'refs/tags/') 27 27 run: poetry publish --build -u __token__ -p ${{ secrets.PYPI_TOKEN }} 28 + - name: Upload coverage 29 + uses: codecov/codecov-action@v3 30 + with: 31 + token: ${{ secrets.CODECOV_TOKEN }} 32 + files: ./coverage.xml 33 + fail_ci_if_error: true