Skip to content

Commit

Permalink
Deployed to github pages
Browse files Browse the repository at this point in the history
  • Loading branch information
Github Actions committed May 23, 2020
1 parent 765f39e commit 00f93f5
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,28 @@ a GitHub action to install (pre-release) pythons from [deadsnakes]
### using this action

To use this action, add it adjacent to `setup-python` and opt into it
conditionally. Here's an example which uses `python` as a matrix.
conditionally. Here's an example which uses `python-version` as a matrix.

```yaml
TODO!!!!
on:
push:

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9-dev]
name: main
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
if: matrix.python-version != '3.9-dev'
with:
python-version: ${{ matrix.python-version }}
- uses: deadsnakes/[email protected]
if: matrix.python-version == '3.9-dev'
with:
python-version: ${{ matrix.python-version }}
- run: python --version --version && which python
```

0 comments on commit 00f93f5

Please sign in to comment.