Add check-package step also to 'test' workflow

This ensures we do not have any surprises when we try to deploy,
which uses the same step to generate the package.
This commit is contained in:
Bruno Oliveira
2023-05-12 17:28:15 -03:00
parent 103ee05f01
commit fa08e0987b
2 changed files with 9 additions and 0 deletions

View File

@@ -10,6 +10,14 @@ on:
- "*"
jobs:
check-package:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build and Check Package
uses: hynek/build-and-inspect-python-package@v1.5
test:
runs-on: ${{ matrix.os }}

View File

@@ -2,6 +2,7 @@
name = pytest-xdist
description = pytest xdist plugin for distributed testing, most importantly across multiple CPUs
long_description = file: README.rst
long_description_content_type = text/x-rst
license = MIT
author = holger krekel and contributors
author_email = pytest-dev@python.org,holger@merlinux.eu