Skip to content

Commit 2ca0ab3

Browse files
committed
mkdir .venv
1 parent 5dce59f commit 2ca0ab3

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,11 +85,13 @@ jobs:
8585
- name: Set up environment
8686
if: ${{ runner.os != 'Windows' }}
8787
run: |
88+
mkdir --parents .venv
8889
echo "$(realpath .venv)/bin" >> ${GITHUB_PATH}
8990
9091
- name: Set up environment (Windows)
9192
if: ${{ runner.os == 'Windows' }}
9293
run: |
94+
New-Item -Type Directory -Force .venv
9395
"$(Resolve-Path .venv)/Scripts" | Out-File -FilePath ${env:GITHUB_PATH} -Append
9496
9597
- name: Install dependencies

compose.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
version: "3.9"
21
services:
32
app_dev:
43
image: ghcr.io/yxtay/python-example-app:dev

0 commit comments

Comments
 (0)