Skip to content

Remove requirements for security vulnerabilities #13

Remove requirements for security vulnerabilities

Remove requirements for security vulnerabilities #13

Workflow file for this run

name: Codecov
on:
push:
branches:
- main
- '*.x'
paths-ignore:
- 'docs/**'
- '*.md'
- '*.rst'
- '*.txt'
pull_request:
branches:
- main
- '*.x'
paths-ignore:
- 'docs/**'
- '*.md'
- '*.rst'
- '*.txt'
jobs:
run:
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- {name: 3.10 Linux, python: '3.10', os: ubuntu-latest}
steps:
- uses: actions/checkout@master
- name: Setup Python
uses: actions/setup-python@master
with:
python-version: ${{ matrix.python }}
- name: Generate coverage report
run: |
pip install -e .[dev]
pytest --cov=./ --cov-report=xml:./coverage/reports/coverage.xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true
name: codecov-umbrella