Skip to content

Commit

Permalink
Merge pull request #319 from C-Pro/fix/prod-workflow
Browse files Browse the repository at this point in the history
prod wf fixes
  • Loading branch information
C-Pro authored Sep 8, 2024
2 parents ae927f9 + 300565f commit 1c2fd95
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/nayn_bot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install pipenv==2022.9.24
pipenv install --system --dev
pipenv install --dev
- name: Lint
run: make lint
run: pipenv run make lint
- name: Test with pytest
run: export PYTHONPATH=./bot && pytest
run: export PYTHONPATH=./bot && pipenv run pytest
- name: Publish to Registry
uses: elgohr/Publish-Docker-Github-Action@v5
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/nayn_bot_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install pipenv==2022.9.24
pipenv install --system --dev
pipenv install --dev
- name: Lint
run: make lint
run: pipenv run make lint
- name: Test with pytest
run: export PYTHONPATH=./bot && pytest
run: export PYTHONPATH=./bot && pipenv run pytest
- name: Publish to Registry
uses: elgohr/Publish-Docker-Github-Action@v5
with:
Expand Down

0 comments on commit 1c2fd95

Please sign in to comment.