mirror of
https://github.com/actions/setup-python.git
synced 2025-04-21 22:38:43 +00:00
add example
This commit is contained in:
parent
94b9b997d1
commit
8cdead3387
1 changed files with 11 additions and 0 deletions
|
@ -77,6 +77,17 @@ steps:
|
|||
**/requirements.txt
|
||||
```
|
||||
|
||||
|
||||
```
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: 3.9
|
||||
cache: pip
|
||||
cache-dependency-path: **/requirements-dev.txt
|
||||
```
|
||||
|
||||
## Release process
|
||||
|
||||
As soon as the functionality is implemented, we will release a minor update of the action. No need to bump the major version since there are no breaking changes for existing users. After that, we will update [starter-workflows](https://github.com/actions/starter-workflows/blob/main/ci/python-app.yml) and [GitHub Action documentation](https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#caching-dependencies).
|
||||
|
|
Loading…
Add table
Reference in a new issue