Skip to content

Commit fa08e09

Browse files
committed
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.
1 parent 103ee05 commit fa08e09

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

.github/workflows/test.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,14 @@ on:
1010
- "*"
1111

1212
jobs:
13+
14+
check-package:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v3
18+
- name: Build and Check Package
19+
uses: hynek/[email protected]
20+
1321
test:
1422

1523
runs-on: ${{ matrix.os }}

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = pytest-xdist
33
description = pytest xdist plugin for distributed testing, most importantly across multiple CPUs
44
long_description = file: README.rst
5+
long_description_content_type = text/x-rst
56
license = MIT
67
author = holger krekel and contributors
78

0 commit comments

Comments
 (0)