Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tweak release.yml #18

Merged
merged 2 commits into from
Mar 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
- uses: actions/checkout@v4

- name: Install Rye
run: curl -sSf https://rye-up.com/get | RYE_INSTALL_OPTION="--yes" bash
run: |
curl -sSf https://rye-up.com/get | RYE_INSTALL_OPTION="--yes" bash
echo "$HOME/.rye/env" >> $GITHUB_PATH

- name: Build
run: |
source "$HOME/.rye/env"
rye build
run: rye build

- name: Publish package distributions to PyPI
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
3 changes: 0 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,6 @@ jobs:
run: |
pip3 install -r requirements-dev.lock

# - name: Type-check with Pyright
# run: pyright .

- name: Test
run: pytest -v --cov --cov-report xml --cov-report term

Expand Down