Skip to content

Commit

Permalink
Workflow debug
Browse files Browse the repository at this point in the history
  • Loading branch information
MasloMaslane committed Sep 22, 2023
1 parent c9d9719 commit b1e982c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/sinol_make/helpers/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ def get_cache_file(solution_path: str) -> CacheFile:
"""
os.makedirs(paths.get_cache_path("md5sums"), exist_ok=True)
try:
with open(paths.get_cache_path("md5sums", os.path.basename(solution_path)), 'r') as cache_file:
print(cache_file.read()) # For debugging workflow
with open(paths.get_cache_path("md5sums", os.path.basename(solution_path)), 'r') as cache_file:
data = yaml.load(cache_file, Loader=yaml.FullLoader)
print(data) # For debugging workflow
Expand Down

0 comments on commit b1e982c

Please sign in to comment.