mirror of
https://github.com/mwisnowski/mtg_python_deckbuilder.git
synced 2025-12-16 15:40:12 +01:00
fix: add Path wrapper in workflow debug step
This commit is contained in:
parent
30dfca0b67
commit
a689400c47
1 changed files with 2 additions and 1 deletions
3
.github/workflows/build-similarity-cache.yml
vendored
3
.github/workflows/build-similarity-cache.yml
vendored
|
|
@ -94,9 +94,10 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
python -c "
|
python -c "
|
||||||
import pandas as pd
|
import pandas as pd
|
||||||
|
from pathlib import Path
|
||||||
from code.path_util import get_processed_cards_path
|
from code.path_util import get_processed_cards_path
|
||||||
|
|
||||||
parquet_path = get_processed_cards_path()
|
parquet_path = Path(get_processed_cards_path())
|
||||||
print(f'Reading Parquet file: {parquet_path}')
|
print(f'Reading Parquet file: {parquet_path}')
|
||||||
print(f'File exists: {parquet_path.exists()}')
|
print(f'File exists: {parquet_path.exists()}')
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue