Skip to content
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
5 changes: 4 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@ jobs:
echo "Pylint check failed. Please fix the issues."
exit 1
fi

- name: Build and start aikido mock server
run: |
cd end2end/server && docker build -t mock_core .
docker run --name mock_core -d -p 5050:5000 mock_core
- name: Run Black Check
run: |
poetry run black --check --diff aikido_zen/
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/test-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@ jobs:
echo "Pylint check failed. Please fix the issues."
exit 1
fi

- name: Build and start aikido mock server
run: |
cd end2end/server && docker build -t mock_core .
docker run --name mock_core -d -p 5050:5000 mock_core
- name: Run Black Check
run: |
poetry run black --check --diff aikido_zen/
Expand Down
Loading