Skip to content

Commit

Permalink
Added solution for 2023/Day 24
Browse files Browse the repository at this point in the history
  • Loading branch information
npanuhin committed Dec 26, 2023
1 parent 001b444 commit 02a6c70
Show file tree
Hide file tree
Showing 6 changed files with 548 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/postprocess.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,15 @@ jobs:
with:
python-version: 3.11
cache: pip
cache-dependency-path: .github/requirements.txt
# cache-dependency-path: .github/requirements.txt

- name: Install Python dependencies
working-directory: .github
run: pip install -r requirements.txt

- name: Install Python dependencies for solutions
run: find . -name "requirements.txt" -type f -not -path ".github/*" -exec pip install -r '{}' ';'

- name: Run postprocess
working-directory: .github/src
run: python postprocess.py
Expand Down
Loading

0 comments on commit 02a6c70

Please sign in to comment.