Skip to content

Commit

Permalink
fix and test check-manifest (#142)
Browse files Browse the repository at this point in the history
* fix and test check-manifest

* change name
  • Loading branch information
tlambert03 authored May 25, 2022
1 parent 2511584 commit 9f4599e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
13 changes: 13 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,19 @@ on:
- "main"

jobs:
check_manifest:
name: check-manifest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.9
- name: check-manifest
run: |
pip install check-manifest
check-manifest
test:
name: test ${{ matrix.platform }} (${{ matrix.python-version }})
runs-on: ${{ matrix.platform }}
Expand Down
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
include LICENSE README.md setup.py pyproject.toml
include LICENSE README.md setup.py pyproject.toml CHANGELOG.md
include src/ome_types/py.typed
recursive-include src *.xsd
recursive-exclude testing *
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ ignore = [
"mypy.ini",
"coverage.yml",
".pre-commit-config.yaml",
".github_changelog_generator",
"src/ome_autogen.py",
".readthedocs.yml",
"src/ome_types/_version.py", # added by setuptools_scm during build
Expand Down

0 comments on commit 9f4599e

Please sign in to comment.