Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

prod wf fixes #319

Merged
merged 2 commits into from
Sep 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading