chore(deps): bump importlib-metadata from 6.8.0 to 8.3.0 #430
Workflow file for this run
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: "Pull Request verification" | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
Tests: | |
name: "Tests | ${{ matrix.os }} | Python ${{ matrix.python-version }}" | |
env: | |
USING_COVERAGE: '3.11' | |
USING_DOCS: '3.11' | |
USING_DIST: '3.11' | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ["Ubuntu"] | |
python-version: ["3.11", "pypy-3.9"] | |
runs-on: "${{ matrix.os }}-latest" | |
steps: | |
- uses: "actions/checkout@v4" | |
- name: "Set up Python ${{ matrix.python-version }}" | |
uses: "actions/setup-python@v5.1.0" | |
id: full-python-version | |
with: | |
python-version: "${{ matrix.python-version }}" | |
- uses: "abatilo/actions-poetry@v3.0.0" | |
- name: "Install dependencies" | |
run: | | |
python -VV | |
python -m site | |
python -m pip install --upgrade pip setuptools wheel | |
python -m pip install --upgrade coverage[toml] tox tox-gh-actions | |
poetry install | |
# - name: "Configure poetry" | |
# run: poetry config virtualenvs.in-project true | |
# | |
# - name: "Set up cache" | |
# uses: actions/cache@v2 | |
# id: cache | |
# with: | |
# path: .venv | |
# key: venv-${{ runner.os }}-${{ steps.full-python-version.outputs.version }}-${{ hashFiles('**/poetry.lock') }} | |
# | |
# - name: "Ensure cache is healthy" | |
# if: steps.cache.outputs.cache-hit == 'true' | |
# run: timeout 10s poetry run pip --version || rm -rf .venv | |
- name: "Run tox targets for ${{ matrix.python-version }}" | |
run: tox | |
# - name: "Get coverage" | |
# if: "contains(env.USING_COVERAGE, matrix.python-version)" | |
# run: | | |
# set -xe | |
# tox -e coverage-report | |
# - name: "Upload coverage to Codecov" | |
# if: "contains(env.USING_COVERAGE, matrix.python-version)" | |
# uses: "codecov/codecov-action@v1" | |
# with: | |
# fail_ci_if_error: true | |
# | |
# - name: "Upload coverage artifacts" | |
# if: "contains(env.USING_DOCS, matrix.python-version)" | |
# uses: actions/upload-artifact@v4 | |
# with: | |
# name: coverage | |
# path: .coverage-reports | |
- name: "Build package" | |
run: | | |
poetry build | |
- name: "Upload dist artifacts" | |
uses: actions/upload-artifact@v4 | |
with: | |
name: package-dist-${{ runner.os }}-${{ steps.full-python-version.outputs.python-version }} | |
path: dist/ | |
- name: "Upload docs artifacts" | |
uses: actions/upload-artifact@v4 | |
if: "contains(env.USING_DOCS, matrix.python-version)" | |
with: | |
name: docs | |
path: docs/_build/html |