Skip to content

Commit

Permalink
Installing full package with cli to validate
Browse files Browse the repository at this point in the history
  • Loading branch information
ghandic committed Jan 7, 2023
1 parent 6753c0f commit 2f5fe28
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/mkdoc-gh-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ jobs:
- name: Validate package
run: |
ls dist
pip3 install dist/jsf-*.tar.gz\[cli\]
PACKAGE=`ls dist/jsf-*.tar.gz`
pip3 install $PACKAGE\[cli\]
jsf --help
- name: Deploy docs
run: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/python-package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ jobs:
- name: Validate package
run: |
ls dist
pip3 install dist/jsf-*.tar.gz\[cli\]
PACKAGE=`ls dist/jsf-*.tar.gz`
pip3 install $PACKAGE\[cli\]
jsf --help
- name: Upload coverage
uses: codecov/codecov-action@v1
Expand Down

0 comments on commit 2f5fe28

Please sign in to comment.