[pre-commit.ci] pre-commit autoupdate #977
This file contains hidden or 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: 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/codecov-action@v3.1.1 |