diff --git a/.github/workflows/continuous-integration.yaml b/.github/workflows/continuous-integration.yaml index 229526e..511669c 100644 --- a/.github/workflows/continuous-integration.yaml +++ b/.github/workflows/continuous-integration.yaml @@ -38,6 +38,5 @@ jobs: - run: pip install --upgrade pip - run: pip install poetry - run: cd found && make init - - run: cd found && make database-clear - - run: cd found && python readme.py - - run: cd found && make check + - run: cd found && poetry run python readme.py + - run: cd found && poetry run make check diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 766aa7d..06d1b09 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -37,7 +37,6 @@ jobs: - run: pip install --upgrade pip - run: pip install poetry - run: cd found && make init - - run: cd found && make database-clear - - run: cd found && python readme.py - - run: cd found && make check + - run: cd found && poetry run python readme.py + - run: cd found && poetry run make check - run: cd found && poetry publish --build