Skip to content

build(deps): bump ruff from 0.6.4 to 0.6.8 #32

build(deps): bump ruff from 0.6.4 to 0.6.8

build(deps): bump ruff from 0.6.4 to 0.6.8 #32

Workflow file for this run

name: Coverage
on:
push:
branches:
- main
- 'stable/**'
pull_request:
branches:
- main
- 'stable/**'
jobs:
coverage:
name: code coverage (${{ matrix.os }}, ${{ matrix.python-version }})
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
max-parallel: 4
matrix:
os: [ubuntu-latest]
python-version: ["3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: |
python -m pip install --upgrade pip
pip install tox coverage
- name: Run coverage
run: |
tox -e coverage
- name: Convert to lcov
if: always()
run: coverage3 lcov -o coveralls.lcov
- name: Upload report to Coveralls
if: always()
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
file: coveralls.lcov
format: lcov