update to ruff linter and asserts #114
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: codecov | |
on: | |
push: | |
branches: [main,dev] | |
pull_request: | |
branches: [main,dev] | |
jobs: | |
codecov-job: | |
runs-on: ubuntu-latest | |
# strategy: | |
# matrix: | |
# python-version: | |
# - 3.9 | |
# env: | |
# PYTHON_FOR_COVERAGE: "3.9" | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v2 | |
- name: setup python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.9" | |
- name: Install apt-dependencies | |
run: | | |
make apt-packages-ubuntu | |
- name: Install python-dependencies | |
run: | | |
make deps | |
- name: Run coverage | |
run: | | |
coverage erase | |
coverage run --include=pipewire_python/* -m pytest -v -ra | |
coverage report -m | |
coverage xml | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v1 | |
# if: "contains(env.USING_COVERAGE, matrix.python-version)" | |
with: | |
files: ./coverage.xml | |
token: "${{ secrets.CODECOV_TOKEN }}" | |
fail_ci_if_error: true | |
verbose: true |