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

ci: try uv #225

Merged
merged 1 commit into from
May 24, 2024
Merged
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
ci: try uv
Signed-off-by: Henry Schreiner <[email protected]>
  • Loading branch information
henryiii committed May 24, 2024
commit e07d295213e077c504f1a9ac39dbd1df298ad0a2
8 changes: 6 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,14 @@ jobs:
- "3.9"
- "3.8"
steps:
- name: setup uv for tox
uses: yezz123/setup-uv@v4
- name: setup python for tox
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: install tox
run: python -m pip install tox
run: uv pip install tox tox-uv --system
- uses: actions/checkout@v4
- name: setup python for test ${{ matrix.py }}
uses: actions/setup-python@v5
Expand Down Expand Up @@ -61,13 +63,15 @@ jobs:
- dev
- readme
steps:
- name: setup uv for tox
uses: yezz123/setup-uv@v4
- uses: actions/checkout@v4
- name: setup Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: install tox
run: python -m pip install tox
run: uv pip install tox tox-uv --system
- name: run check for ${{ matrix.tox_env }}
run: python -m tox -e ${{ matrix.tox_env }}
env:
Expand Down
Loading