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 2446a36 commit 7023a18Copy full SHA for 7023a18
.github/workflows/agentex-tutorials-test.yml
@@ -21,7 +21,13 @@ jobs:
21
- name: Install Rye
22
run: |
23
curl -sSf https://rye.astral.sh/get | bash
24
+ # Source the rye environment as recommended by the installer
25
+ source "$HOME/.rye/env"
26
+ # Add to PATH for subsequent steps
27
echo "$HOME/.rye/shims" >> $GITHUB_PATH
28
+ # Verify installation
29
+ which rye
30
+ rye --version
31
env:
32
RYE_VERSION: "0.44.0"
33
RYE_INSTALL_OPTION: "--yes"
0 commit comments