Skip to content

Commit

Permalink
fix: update variables in yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
rorywhite200 authored Jan 30, 2024
1 parent ae5bea8 commit 05fea95
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
run: poetry install

- name: Test with pytest
run: poetry run pytest tests/ --cov={{ cookiecutter.__package_slug }} --cov-report=xml
run: poetry run pytest tests/ --cov=passwordler --cov-report=xml

- name: Use Codecov to track coverage
uses: codecov/codecov-action@v3
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "{{ cookiecutter.python_version }}"
python-version: "3.11"

- name: Check-out repository
uses: actions/checkout@v3
Expand All @@ -78,7 +78,7 @@ jobs:
pip install \
--index-url https://test.pypi.org/simple/ \
--extra-index-url https://pypi.org/simple \
{{ cookiecutter.__package_slug }}
passwordler
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
Expand Down

0 comments on commit 05fea95

Please sign in to comment.