We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
uv
1 parent 071987c commit a25eb1dCopy full SHA for a25eb1d
.github/workflows/build.yml
@@ -60,6 +60,17 @@ jobs:
60
fail-fast: false
61
steps:
62
- uses: actions/checkout@v5
63
+
64
+ - name: Install uv package manager
65
+ uses: astral-sh/setup-uv@v6
66
+ with:
67
+ version: "latest"
68
+ version-file: "pyproject.toml"
69
+ python-version: 3.11
70
+ enable-cache: true
71
72
+ - run: uv sync
73
74
- name: Integration test ${{ matrix.model }}
75
id: integration
76
uses: ./
@@ -78,6 +89,8 @@ jobs:
78
89
echo "feedback_${{ matrix.model }}=${{ steps.integration.outputs.feedback }}" >> $GITHUB_OUTPUT
79
90
- name: Verify integration test results
80
91
run: |
92
+ . .venv/bin/activate
93
+ uv pip list
81
94
82
95
python3 -u -m pytest tests/integration.py
83
96
0 commit comments