This repository has been archived by the owner on Jan 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MANIFEST only necessary files for package install (#195)
* MANIFEST only necessary files for package install * Add MANIFEST check to CI * Obey check-manifest overlords
- Loading branch information
1 parent
6e3864a
commit a8b8992
Showing
2 changed files
with
22 additions
and
2 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,9 +12,16 @@ jobs: | |
linting: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: neuroinformatics-unit/actions/[email protected] | ||
- uses: neuroinformatics-unit/actions/lint@v2 | ||
|
||
manifest: | ||
name: Check Manifest | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: neuroinformatics-unit/actions/check_manifest@v2 | ||
|
||
test: | ||
needs: [linting, manifest] | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
|
@@ -42,6 +49,7 @@ jobs: | |
# Run cellfinder tests to make sure cellfinder is still compatible | ||
# with cellfinder-core | ||
test_cellfinder: | ||
needs: [linting, manifest] | ||
name: Run cellfinder tests | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,13 @@ | ||
prune tests/data | ||
include README.md | ||
include LICENSE | ||
include pyproject.toml | ||
|
||
exclude *.yml | ||
exclude *.yaml | ||
exclude tox.ini | ||
exclude CHANGELOG.md | ||
|
||
graft src | ||
|
||
prune benchmarks | ||
prune tests |