We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Coveralls recommends using their GitHub Action for CI. Currently, we manually upload to coveralls through the following:
- name: Upload coverage data to converalls.io env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.11' run: | pip install --upgrade coveralls coveralls --service=github
No response
Should be something similar to
- name: Upload coverage data to converalls.io env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.11' uses: coverallsapp/github-action@v2
See PR #207 for a minor discussion on this topic
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Feature Request
Coveralls recommends using their GitHub Action for CI. Currently, we manually upload to coveralls through the following:
Is your feature related to a bug?
No response
Suggested Solution
Should be something similar to
Additional Info
See PR #207 for a minor discussion on this topic
The text was updated successfully, but these errors were encountered: