From 0856f54a4323f57490808cc41d94a5bd3bb9f006 Mon Sep 17 00:00:00 2001 From: Brian Kohan Date: Wed, 3 Apr 2024 15:21:58 -0700 Subject: [PATCH] fix CI to use new markdown readme #48 --- .github/workflows/lint.yml | 2 +- CONTRIBUTING.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 8716de0..3b732db 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -54,7 +54,7 @@ jobs: mypy django_typer poetry check pip check - python -m readme_renderer ./README.rst -o /tmp/README.html + python -m readme_renderer ./README.md -o /tmp/README.html cd ./doc doc8 --ignore-path build --max-line-length 100 echo "$(poetry env info --path)/bin" >> $GITHUB_PATH diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index aa37162..fe80f04 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -67,7 +67,7 @@ certain errors or warnings where justified is acceptable: pyright poetry check poetry run pip check - poetry run python -m readme_renderer ./README.rst + poetry run python -m readme_renderer ./README.md Running Tests