diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3ea96097..c19bd39f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,7 +13,7 @@ jobs: - name: Install SLOCCount run: sudo apt install sloccount - name: Check <1000 lines - run: sloccount tinygrad test examples; if [ $(sloccount test tinygrad | sed -n 's/.*Total Physical Source Lines of Code (SLOC)[ ]*= \([^ ]*\).*/\1/p' | tr -d ',') -gt 1000 ]; then exit 1; fi + run: sloccount tinygrad test examples; if [ $(sloccount tinygrad | sed -n 's/.*Total Physical Source Lines of Code (SLOC)[ ]*= \([^ ]*\).*/\1/p' | tr -d ',') -gt 1000 ]; then exit 1; fi test: name: Test diff --git a/README.md b/README.md index 2131d46a..a1ba5255 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ optim.step() ### The promise of small -tinygrad, with tests, will always be below 1000 lines. If it isn't, we will revert commits until tinygrad becomes smaller. +tinygrad will always be below 1000 lines. If it isn't, we will revert commits until tinygrad becomes smaller. ### Running tests