Skip to content

Commit 3da00ee

Browse files
committed
Fix sourcing venv
1 parent 2a301f5 commit 3da00ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/code-style.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ jobs:
3232
with:
3333
python-version: "3.11"
3434
enable-cache: true
35-
- run: uv venv && source .venv/bin/activate
35+
- run: uv venv
3636
- run: uv pip install ".[dev, pandas, gds, snowflake]"
3737

3838
- name: Check code style
39-
run: cd ${GITHUB_WORKSPACE} && ./scripts/checkstyle.sh
39+
run: source .venv/bin/activate && cd ${GITHUB_WORKSPACE} && ./scripts/checkstyle.sh

0 commit comments

Comments
 (0)