You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+21-4Lines changed: 21 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -131,17 +131,34 @@ To avoid hitting the error `API rate limit exceeded` you can supply a GitHub tok
131
131
github-token: ${{ secrets.GITHUB_TOKEN }}
132
132
```
133
133
134
-
## Limitations
135
-
136
-
1. Currently only Linux and macOS is supported see [issue #10](https://github.com/eifinger/setup-rye/issues/10)
137
-
138
134
## How it works
139
135
140
136
This action downloads rye from the releases of the [rye repo](https://github.com/astral-sh/rye) and uses the [GitHub Actions Toolkit](https://github.com/actions/toolkit) to cache it as a tool to speed up consecutive runs especially on self-hosted runners.
141
137
142
138
The installed version of rye is then added to the runner path so other steps can just use it by calling `rye`.
143
139
To prevent interfering the other rye processes on the same runner `RYE_HOME` gets set to the repository roots parent and is cleaned up after a workflow run.
144
140
141
+
## FAQ
142
+
143
+
### Do I still need actions/setup-python when using this action?
144
+
145
+
No! This action was modelled as a drop-in replacement for `actions/setup-python` when using rye.
0 commit comments