setup-python/README.md

53 lines
1.5 KiB
Markdown
Raw Normal View History

2019-07-16 18:32:08 +00:00
# setup-python
2019-06-27 01:12:00 +00:00
2019-08-12 19:13:56 +00:00
<p align="left">
<a href="https://github.com/actions/setup-python"><img alt="GitHub Actions status" src="https://github.com/actions/setup-python/workflows/Main%20workflow/badge.svg"></a>
</p>
2019-07-17 14:36:10 +00:00
This action sets up a python environment for use in actions by:
2019-07-17 14:59:43 +00:00
- optionally installing a version of python and adding to PATH. Note that this action only uses versions of Python already installed in the cache. The action will fail if no matching versions are found.
2019-07-17 14:36:10 +00:00
- registering problem matchers for error output
# Usage
See [action.yml](action.yml)
Basic:
```yaml
2019-07-26 01:29:46 +00:00
steps:
2019-07-23 19:45:57 +00:00
- uses: actions/checkout@master
2019-08-01 13:16:36 +00:00
- uses: actions/setup-python@v1
2019-07-17 14:36:10 +00:00
with:
2019-08-16 14:21:29 +00:00
python-version: '3.x' # Version range or exact version of a Python version to use, using semvers version range syntax.
architecture: 'x64' # (x64 or x86)
2019-07-17 14:36:10 +00:00
- run: python my_script.py
```
Matrix Testing:
```yaml
jobs:
build:
2019-08-01 15:07:19 +00:00
runs-on: ubuntu-16.04
2019-07-17 14:36:10 +00:00
strategy:
matrix:
2019-08-01 15:07:19 +00:00
python: [ '2.x', '3.x', 'pypy3' ]
2019-07-17 14:36:10 +00:00
name: Python ${{ matrix.python }} sample
2019-07-26 01:29:46 +00:00
steps:
2019-07-23 19:45:57 +00:00
- uses: actions/checkout@master
2019-07-17 14:36:10 +00:00
- name: Setup python
2019-08-01 13:16:36 +00:00
uses: actions/setup-python@v1
2019-07-17 14:36:10 +00:00
with:
2019-08-13 20:30:18 +00:00
python-version: ${{ matrix.python }}
2019-07-17 14:36:10 +00:00
architecture: x64
- run: python my_script.py
```
# License
The scripts and documentation in this project are released under the [MIT License](LICENSE)
# Contributions
Contributions are welcome! See [Contributor's Guide](docs/contributors.md)