build(deps-dev): bump the pip group with 3 updates #2231
Workflow file for this run
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: Coverage | |
| on: | |
| push: | |
| branches-ignore: | |
| - "dependabot/**" | |
| - "pre-commit-ci-update-config" | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| coverage: | |
| name: Coverage | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| submodules: recursive | |
| persist-credentials: false | |
| - name: Install the latest version of uv | |
| uses: astral-sh/setup-uv@v7 | |
| - uses: wntrblm/[email protected] | |
| with: | |
| python-versions: "3.14, 3.15, pypy3.10, pypy3.11" | |
| - name: Install Intel SDE, libxml2-dev & libxslt1-dev | |
| run: | | |
| curl -fsSLo ${HOME}/sde.tar.xz https://downloadmirror.intel.com/859732/sde-external-9.58.0-2025-06-16-lin.tar.xz | |
| mkdir ${HOME}/sde | |
| tar -C ${HOME}/sde --strip-components 1 -xf ${HOME}/sde.tar.xz | |
| echo "PATH=${HOME}/sde:${PATH}" >> $GITHUB_ENV | |
| # as long as lxml does not provide 3.15 wheels | |
| sudo apt-get update | |
| sudo apt-get install -y libxml2-dev libxslt1-dev | |
| - name: Run coverage tests | |
| run: nox -s coverage -- --with-sde | |
| - name: Upload coverage to codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| files: coverage-native.xml,coverage-python.xml | |
| token: ${{ secrets.CODECOV_TOKEN }} |