diff --git a/.github/workflows/publish-to-pypi.yml b/.github/workflows/publish-to-pypi.yml index 33d1454..2d0e217 100644 --- a/.github/workflows/publish-to-pypi.yml +++ b/.github/workflows/publish-to-pypi.yml @@ -16,8 +16,8 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Install Poetry - run: pipx install poetry + - name: Setup binaries. Poetry, Twine. + run: make setup-binaries - name: Set up Python 🐍 uses: actions/setup-python@v4 diff --git a/Makefile b/Makefile index ae10c69..430ea9f 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ build: ## Build the package poetry build check: ## Check the package - twine check dist/* + twine check --strict dist/* clean: ## Clean the package rm -rf dist/*