Skip to content

Commit 86d7090

Browse files
authored
ci: add test for pypi exposed code (#30)
* ci: add test for pypi exposed code * chore: bump to 1.0.0
1 parent eb08395 commit 86d7090

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/build.yml

+5
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,11 @@ jobs:
6666
use-only-tar-bz2: true # This needs to be set for proper caching
6767
auto-update-conda: true # Required for windows for `use-only-tar-bz2`
6868

69+
- name: Install dependencies and test code
70+
run: |
71+
pip3 install -e .
72+
python3 -c "import paccmann_predictor.models"
73+
6974
- name: Affinity - Install dependencies and run tests
7075
run: |
7176
python3 -m pip install --upgrade pip

paccmann_predictor/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""Initialization for `paccmann.models` submodule."""
2-
__version__ = "0.0.5"
2+
__version__ = "1.0.0"

0 commit comments

Comments
 (0)