Skip to content

Commit

Permalink
Add check-package step also to 'test' workflow
Browse files Browse the repository at this point in the history
This ensures we do not have any surprises when we try to deploy,
which uses the same step to generate the package.
  • Loading branch information
nicoddemus committed May 12, 2023
1 parent 103ee05 commit fa08e09
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit fa08e09

Please sign in to comment.