Skip to content

Commit

Permalink
Tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
palewire committed Nov 28, 2023
1 parent 461497a commit d940654
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/continuous-deployment.yaml
Expand Up @@ -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
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:

- uses: actions/setup-python@v4
with:
python-version: {{ matrix.python }}
python-version: ${{ matrix.python }}
cache: 'pipenv'

- id: pipenv-install
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit d940654

Please sign in to comment.