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

Use Coveralls Github Action to send data to coveralls again #319

Merged
merged 1 commit into from Feb 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 8 additions & 2 deletions .github/workflows/tox.yml
@@ -1,7 +1,7 @@
---
name: Test Python package with Tox

on: [pull_request]
on: ["push", "pull_request"]

jobs:
build:
Expand Down Expand Up @@ -34,6 +34,12 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
pip install tox tox-gh-actions coverage
- name: Test with tox
run: tox
- name: Produce coverage.lcov for coveralls
if: matrix.python-version == '3.11'
run: coverage lcov
- name: Coveralls
if: matrix.python-version == '3.11'
uses: coverallsapp/github-action@v2