Skip to content

Bump codecov/codecov-action from 3.1.1 to 4.0.1 #948

Bump codecov/codecov-action from 3.1.1 to 4.0.1

Bump codecov/codecov-action from 3.1.1 to 4.0.1 #948

Workflow file for this run

name: Integration
on: pull_request
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10']
os: [ubuntu-latest, windows-latest]
name: Test Python ${{ matrix.python-version }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- run: pip install tox
- run: tox -e py,optional-artifactory
docs:
runs-on: ubuntu-latest
name: Documentation python
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: '3.10'
- run: pip install tox
- run: tox -e docs
coverage:
name: Coverage report
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: '3.10'
- run: pip install tox
- run: tox -e py,optional-artifactory,coverage-report
- name: Upload coverage to Codecov
uses: codecov/[email protected]