We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66337c4 commit 1c3999bCopy full SHA for 1c3999b
.github/workflows/ci.yml
@@ -150,13 +150,18 @@ jobs:
150
with:
151
enable-cache: true
152
153
- - run: |
+ - uses: denoland/setup-deno@v2
154
+ with:
155
+ deno-version: v2.x
156
+
157
+ - name: choose install command
158
+ run: |
159
if [ "${{ matrix.install }}" = "slim" ]; then
- echo "--package pydantic-ai-slim"
160
+ echo "install-command=--package pydantic-ai-slim" >> $GITHUB_OUTPUT
161
elif [ "${{ matrix.install }}" = "standard" ]; then
- echo ""
162
+ echo "install-command=" >> $GITHUB_OUTPUT
163
elif [ "${{ matrix.install }}" = "all-extras" ]; then
- echo "--all-extras"
164
+ echo "install-command=--all-extras" >> $GITHUB_OUTPUT
165
fi
166
id: install-command
167
0 commit comments