Skip to content

Commit

Permalink
Merge pull request #1 from Widen/update-poetry
Browse files Browse the repository at this point in the history
updated actions to support new poetry and py versions
  • Loading branch information
jlloyd-widen committed Aug 22, 2023
2 parents 508f65f + 621fa66 commit 4c54087
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
# Only lint using the primary version used for dev
python-version: [3.7]
python-version: [3.11]

steps:
- uses: actions/checkout@v2
Expand All @@ -22,7 +22,7 @@ jobs:
- name: Install Poetry
run: |
python -m pip install --upgrade pip
pip install poetry==1.2.*
pip install poetry==1.3.2
poetry install -v
- name: Run lint command from tox.ini
run: |
Expand All @@ -35,7 +35,7 @@ jobs:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: [3.7, 3.8, 3.9, "3.10", 3.11]

steps:
- uses: actions/checkout@v2
Expand All @@ -46,7 +46,7 @@ jobs:
- name: Install Poetry
run: |
python -m pip install --upgrade pip
pip install poetry==1.2.*
pip install poetry==1.3.2
- name: Install dependencies
run: |
poetry install
Expand Down

0 comments on commit 4c54087

Please sign in to comment.