Merge pull request #18 from webis-de/dependabot/pip/pytest-cov-gte-4-β¦ #87
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: CI | |
on: | |
push: | |
jobs: | |
python-build: | |
name: "ποΈ Build Python wheels" | |
strategy: | |
matrix: | |
python: | |
- "3.8" | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "π₯ Check-out" | |
uses: actions/checkout@v4 | |
- name: "π§° Install Python" | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python }} | |
cache: pip | |
cache-dependency-path: pyproject.toml | |
- name: "π§° Install dependencies" | |
run: pip install build twine | |
- name: "ποΈ Build Python wheels" | |
run: python -m build | |
- name: "π§ͺ Check package bundles" | |
run: twine check dist/* | |
- name: "π€ Upload Python wheels" | |
uses: actions/upload-artifact@v4 | |
if: matrix.python == '3.11' | |
with: | |
name: wheels | |
path: dist | |
python-code-format: | |
name: "π Check Python code format" | |
strategy: | |
matrix: | |
python: | |
- "3.8" | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "π₯ Check-out" | |
uses: actions/checkout@v4 | |
- name: "π§° Install Python" | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python }} | |
cache: pip | |
cache-dependency-path: pyproject.toml | |
- name: "π§° Install dependencies" | |
run: pip install .[test] | |
- name: "π Check Python code format" | |
run: flake8 targer_api tests examples | |
python-lint: | |
name: "π Lint Python code" | |
strategy: | |
matrix: | |
python: | |
- "3.8" | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "π₯ Check-out" | |
uses: actions/checkout@v4 | |
- name: "π§° Install Python" | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python }} | |
cache: pip | |
cache-dependency-path: pyproject.toml | |
- name: "π§° Install dependencies" | |
run: pip install .[test] | |
- name: "π Lint Python code" | |
run: pylint -E targer_api tests examples | |
python-test: | |
name: "π§ͺ Test Python code" | |
strategy: | |
matrix: | |
python: | |
- "3.8" | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "π₯ Check-out" | |
uses: actions/checkout@v4 | |
- name: "π§° Install Python" | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python }} | |
cache: pip | |
cache-dependency-path: pyproject.toml | |
- name: "π§° Install dependencies" | |
run: pip install .[test] | |
- name: "π§ͺ Test Python code" | |
run: pytest --cov --cov-report=xml targer_api tests examples | |
- name: "π€ Upload coverage to Codecov" | |
uses: codecov/codecov-action@v4 | |
if: matrix.python == '3.11' | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
python-publish: | |
name: "π Publish Python wheels" | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') | |
needs: | |
- python-build | |
- python-code-format | |
- python-lint | |
- python-test | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
steps: | |
- name: "π₯ Check-out" | |
uses: actions/checkout@v4 | |
- name: "π₯ Download Python wheels" | |
uses: actions/download-artifact@v4 | |
with: | |
name: wheels | |
path: dist | |
- name: "π Publish Python wheels" | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
github-release: | |
name: "π Create GitHub release" | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') | |
needs: | |
- python-build | |
- python-code-format | |
- python-lint | |
- python-test | |
runs-on: ubuntu-latest | |
steps: | |
- name: "π₯ Check-out" | |
uses: actions/checkout@v4 | |
- name: "π₯ Download Python wheels" | |
uses: actions/download-artifact@v4 | |
with: | |
name: wheels | |
path: dist | |
- name: "π Create GitHub release" | |
uses: softprops/action-gh-release@v2 | |
with: | |
name: Release ${{ github.ref_name }} | |
files: dist/* | |
fail_on_unmatched_files: true | |
draft: false | |
prerelease: false | |
generate_release_notes: true |