Skip to content

Commit 596feec

Browse files
committed
little fix
1 parent 09e0cb7 commit 596feec

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Build
22

3-
on:
3+
on:
4+
- push
45
- workflow_dispatch
56

67
jobs:

src/qoi_compress/main.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,6 @@ def run_multiple_experiments(dir_with_png: str, dir_with_qoi: str) -> None:
5858
# qoi_filename = str(BASE_DIR / 'qoi_images/tmp.qoi')
5959
# run_single_experiment(png_filename, qoi_filename)
6060

61-
# dir_with_png = str(BASE_DIR / "debug_png_images/")
62-
# dir_with_qoi = str(BASE_DIR / "qoi_images/")
63-
# run_multiple_experiments(dir_with_png, dir_with_qoi)
61+
dir_with_png = str(BASE_DIR / "debug_png_images/")
62+
dir_with_qoi = str(BASE_DIR / "qoi_images/")
63+
run_multiple_experiments(dir_with_png, dir_with_qoi)

0 commit comments

Comments
 (0)