Skip to content

fix: add workaround to vibrate runtime error; resolves #22 #34

fix: add workaround to vibrate runtime error; resolves #22

fix: add workaround to vibrate runtime error; resolves #22 #34

Workflow file for this run

name: codecov
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
pytest:
env:
poetry-version: "1.5.1"
runs-on: ubuntu-latest
steps:
- name: Checkout the repo
uses: actions/checkout@v3
- name: Set up Poetry ${{ matrix.poetry-version }}
uses: abatilo/actions-poetry@v2
with:
poetry-version: ${{ env.poetry-version }}
- name: Install dependencies
run: poetry install --no-interaction
- name: Run tests and collect coverage
run: poetry run pytest --cov=. --cov-report=xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
with:
file: ./coverage.xml
token: ${{ secrets.CODECOV_TOKEN }}