Skip to content

Commit aab6249

Browse files
authored
Update update-readme.yml
1 parent 70712e7 commit aab6249

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/update-readme.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,25 @@ jobs:
1515
- uses: actions/checkout@v3
1616
with:
1717
token: ${{ secrets.GITHUB_TOKEN }}
18+
1819
- name: Set up Python
1920
uses: actions/setup-python@v4
2021
with:
2122
python-version: "3.x"
23+
24+
- name: List .java files (debug)
25+
run: |
26+
echo "Listing solution files:"
27+
find Easy Medium Hard -type f -name '*.java' 2>/dev/null | sort || true
28+
echo "Total:"
29+
find Easy Medium Hard -type f -name '*.java' 2>/dev/null | wc -l || true
30+
2231
- name: Run update script
2332
run: python .github/scripts/update_readme.py
33+
34+
- name: Show updated README (debug)
35+
run: cat README.md
36+
2437
- name: Commit changes
2538
run: |
2639
git config --global user.name "github-actions[bot]"

0 commit comments

Comments
 (0)