Skip to content

Commit

Permalink
Update python-package.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
andamian committed Nov 6, 2020
1 parent 838cf2d commit 256d4b5
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/python-package.yml
Expand Up @@ -20,7 +20,13 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: |
run: |
python -m pip install --upgrade pip
pip install twine
for i in (ls -d */); do
cd $i
pip install -r dev_requirements.txt;
cd ..
./.publish.sh
exit -1
build:
Expand All @@ -41,7 +47,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install pytest coveralls
for i in (ls -d vos */); do
for i in (ls -d */); do
cd $i
pip install -r dev_requirements.txt;
cd ..
Expand Down

0 comments on commit 256d4b5

Please sign in to comment.