Skip to content

Commit

Permalink
Update ci.yaml to fix versions
Browse files Browse the repository at this point in the history
  • Loading branch information
slott56 committed May 21, 2024
1 parent 2aab73c commit 25d2f1e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ on:
push:
pull_request:
env:
POETRY_VERSION: "1.5.1"
DEFAULT_PY_VERSION: "3.11"
POETRY_VERSION: "1.8.3"
DEFAULT_PY_VERSION: "3.12"

jobs:
Lint:
Expand All @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: 3.12
python-version: ${{ env.DEFAULT_PY_VERSION }}
- name: Linting
env:
RUFF_OUTPUT_FORMAT: github
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
- uses: actions/checkout@v2
- name: Install poetry
shell: bash
run: pipx install poetry==${{ inputs.poetry-version }}
run: pipx install poetry==${{ env.POETRY_VERSION }}

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
Expand All @@ -70,7 +70,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: 3.8
python-version: ${{ env.DEFAULT_PY_VERSION }}

- name: Install Test Runner
run: |
Expand Down

0 comments on commit 25d2f1e

Please sign in to comment.