Skip to content

Commit

Permalink
docs: Update README examples
Browse files Browse the repository at this point in the history
  • Loading branch information
sondrelg committed Feb 12, 2023
1 parent 0adc48f commit c9e8b50
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[![release](https://img.shields.io/github/release/snok/install-poetry.svg)](https://github.com/snok/install-poetry/releases/latest)
[![tests](https://github.com/snok/install-poetry/workflows/test/badge.svg)](https://github.com/snok/install-poetry)
[![tests](https://github.com/snok/install-poetry/actions/workflows/test.yml/badge.svg)](https://github.com/snok/install-poetry/actions/workflows/test.yml)

# Install Poetry Action

Expand All @@ -22,7 +22,7 @@ If you want to set Poetry config settings, or install a specific version, you ca
- name: Install and configure Poetry
uses: snok/install-poetry@v1
with:
version: 1.2.2
version: 1.3.2
virtualenvs-create: true
virtualenvs-in-project: false
virtualenvs-path: ~/my-custom-path
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
id: setup-python
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.11'
#----------------------------------------------
# ----- install & configure poetry -----
#----------------------------------------------
Expand Down Expand Up @@ -186,8 +186,8 @@ jobs:
fail-fast: true
matrix:
os: [ "ubuntu-latest", "macos-latest" ]
python-version: [ "3.7", "3.8", "3.9", "3.10" ]
django-version: [ "2", "3" ]
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]
django-version: ["3", "4" ]
runs-on: ${{ matrix.os }}
steps:
#----------------------------------------------
Expand Down Expand Up @@ -266,7 +266,7 @@ jobs:
- uses: actions/setup-python@v4
id: setup-python
with:
python-version: '3.10'
python-version: '3.11'
#----------------------------------------------
# ----- install & configure poetry -----
#----------------------------------------------
Expand Down Expand Up @@ -370,7 +370,7 @@ jobs:
id: setup-python
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.11'
- name: Install Poetry
uses: snok/install-poetry@v1
with:
Expand Down Expand Up @@ -486,7 +486,7 @@ jobs:
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.11'
- name: Load cached Poetry installation
id: cached-poetry
uses: actions/cache@v3
Expand Down

0 comments on commit c9e8b50

Please sign in to comment.