Skip to content
New issue

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

[FEATURE]: Switch to Coveralls Action #208

Closed
trevorb1 opened this issue Dec 11, 2023 · 0 comments · Fixed by #210
Closed

[FEATURE]: Switch to Coveralls Action #208

trevorb1 opened this issue Dec 11, 2023 · 0 comments · Fixed by #210
Labels
enhancement New feature or request

Comments

@trevorb1
Copy link
Member

Feature Request

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

Is your feature related to a bug?

No response

Suggested Solution

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

Additional Info

See PR #207 for a minor discussion on this topic

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant