Skip to content

Merge pull request #70 from harissa-framework/fix-coveralls #19

Merge pull request #70 from harissa-framework/fix-coveralls

Merge pull request #70 from harissa-framework/fix-coveralls #19

Workflow file for this run

name: Publish coverage to Coveralls
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install harissa
run: pip install -e .[extra]
- name: Install pytest
run: pip install pytest pytest-cov
- name: Run tests and coverage
run: pytest
- name: Upload to coveralls
uses: coverallsapp/github-action@v2
with:
file: coverage.lcov