Skip to content

Commit fa5080c

Browse files
committed
some fixes
1 parent e5b36b3 commit fa5080c

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,8 +227,13 @@ jobs:
227227
COVERAGE=$(python -c "import xml.etree.ElementTree as ET; print(ET.parse('coverage.xml').getroot().get('line-rate'))")
228228
COVERAGE_PCT=$(python -c "print(f'{float(\"$COVERAGE\")*100:.2f}%')")
229229
230-
# Convert to numeric for comparison
231-
COVERAGE_NUM=$(echo "$COVERAGE" | sed 's/%//' | sed 's/\..*//')
230+
# Convert to numeric for comparison - fix the extraction to get the correct number
231+
COVERAGE_NUM=$(python -c "print(int(float('$COVERAGE')*100))")
232+
233+
# Debug output
234+
echo "Debug: COVERAGE=$COVERAGE"
235+
echo "Debug: COVERAGE_PCT=$COVERAGE_PCT"
236+
echo "Debug: COVERAGE_NUM=$COVERAGE_NUM"
232237
233238
{
234239
echo "COVERAGE=$COVERAGE_PCT"

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ One tool that has been absolutely transformative in this process is the Sequenti
2626

2727
One of the biggest pain points I've encountered is setting up a new project environment. Every time I start something new, I find myself spending hours configuring linters, formatters, test frameworks, documentation tools, and CI/CD pipelines. It's tedious, repetitive work that takes away from actual development time. With AI allowing me to work on more projects simultaneously and explore new ideas faster, this configuration overhead became an even bigger bottleneck.
2828

29-
I wanted something preconfigured with all the options and best practices already in place – a template that just works out of the box. Something that integrates all the modern Python tools like Ruff, Pyright, UV, pytest, and MkDocs in a way that they complement each other rather than conflict. Something that handles the boilerplate so I can focus on building features. That's exactly what this project aims to be – a comprehensive starting point that eliminates the setup pain and lets you dive straight into development.
29+
I wanted something preconfigured with all the options and best practices already in place – a template that just works out of the box. Something that integrates all the modern Python tools like Ruff, Pyright, UV, pytest and many more in a way that they complement each other rather than conflict. Something that handles the boilerplate so I can focus on building features. That's exactly what this project aims to be – a comprehensive starting point that eliminates the setup pain and lets you dive straight into development.
3030

3131
## The Memory Bank Experiment
3232

0 commit comments

Comments
 (0)