Skip to content

Commit

Permalink
install venv
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeWang1127 committed Dec 17, 2024
1 parent b96c771 commit ef67e37
Showing 1 changed file with 20 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,29 @@

timeout: 7200s # 2 hours
steps:
- name: python
id: install-venv
entrypoint: python
waitFor: ["-"]
args: [
"-m",
"venv",
".venv"
]

- name: python
id: init-venv
entrypoint: bash
waitFor: ["install-venv"]
args: [
"source",
".venv/bin/activate"
]

- name: python
id: install-python-deps
entrypoint: pip
waitFor: ["-"]
waitFor: ["init-venv"]
args: [
"install",
"GitPython"
Expand Down

0 comments on commit ef67e37

Please sign in to comment.