From d9406548ac57217ea94a00835438bf2d05ea2d8c Mon Sep 17 00:00:00 2001 From: palewire Date: Tue, 28 Nov 2023 05:31:31 -0500 Subject: [PATCH] Tweak --- .github/workflows/continuous-deployment.yaml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/continuous-deployment.yaml b/.github/workflows/continuous-deployment.yaml index 29dc10f..9a283d3 100644 --- a/.github/workflows/continuous-deployment.yaml +++ b/.github/workflows/continuous-deployment.yaml @@ -25,7 +25,7 @@ jobs: - id: install-python-dependencies name: Install Python dependencies - run: pipenv install flake8 + run: pipenv sync --dev - id: lint name: Lint Python code @@ -59,7 +59,7 @@ jobs: - uses: actions/setup-python@v4 with: - python-version: {{ matrix.python }} + python-version: ${{ matrix.python }} cache: 'pipenv' - id: pipenv-install @@ -89,7 +89,7 @@ jobs: - id: pipenv-install name: Install Python dependencies - run: pipenv install --dev --python `which python` + run: pipenv sync --dev - id: build name: Build release @@ -100,8 +100,7 @@ jobs: - id: check name: Check release - run: | - pipenv run twine check dist/* + run: pipenv run twine check dist/* - id: save name: Save artifact