-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
20c5cae
commit 52dc228
Showing
2 changed files
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ jobs: | |
id: setup-python-version | ||
shell: bash | ||
run: | | ||
[[ '${{ matrix.python-version }}' == 'lowest' ]] && echo "python-version=3.8" || echo "python-version=${{ matrix.python-version }}" >> $GITHUB_ENV | ||
[[ '${{ matrix.python-version }}' == 'lowest' ]] && echo "python-version=3.8" || echo "python-version=${{ matrix.python-version }}" >> $GITHUB_OUTPUT | ||
- name: Install rye | ||
uses: phi-friday/[email protected] | ||
|
@@ -62,7 +62,7 @@ jobs: | |
if: matrix.python-version == 'lowest' | ||
run: | | ||
rye install uv | ||
uv pip compile --resolution=lowest pyproject.toml -o requirements.txt | ||
uv pip compile --resolution=lowest pyproject.toml -o requirements.txt --extra uvloop --extra sqlalchemy --extra test | ||
uv pip install -r requirements.txt | ||
rye run pytest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters