We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5dce59f commit bce349fCopy full SHA for bce349f
.github/workflows/ci.yml
@@ -85,11 +85,13 @@ jobs:
85
- name: Set up environment
86
if: ${{ runner.os != 'Windows' }}
87
run: |
88
+ mkdir -p .venv
89
echo "$(realpath .venv)/bin" >> ${GITHUB_PATH}
90
91
- name: Set up environment (Windows)
92
if: ${{ runner.os == 'Windows' }}
93
94
+ New-Item -Type Directory -Force .venv
95
"$(Resolve-Path .venv)/Scripts" | Out-File -FilePath ${env:GITHUB_PATH} -Append
96
97
- name: Install dependencies
compose.yaml
@@ -1,4 +1,3 @@
1
-version: "3.9"
2
services:
3
app_dev:
4
image: ghcr.io/yxtay/python-example-app:dev
0 commit comments