Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add py3.13 and poetry v2 #91

Merged
merged 6 commits into from
Jan 21, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Try to fix ci
  • Loading branch information
Pavkazzz committed Jan 20, 2025
commit 469628948e859f75766bec80be27fe04276b877c
19 changes: 13 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: python -m pip install poetry
- name: Install poetry
uses: abatilo/actions-poetry@v3
with:
poetry-version: latest
- run: poetry install
- run: poetry run pylama poem_plugins
env:
Expand All @@ -26,16 +29,17 @@ jobs:
fail-fast: false

matrix:
poetry:
- "poetry<2"
- "poetry>=2"
poetry-version: ["latest", "2.0.1", "1.8.4"]
steps:
- uses: actions/checkout@v4
- name: Setup python3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: python -m pip install '${{ matrix.poetry }}'
- name: Install poetry
uses: abatilo/actions-poetry@v3
with:
poetry-version: ${{ matrix.poetry-version }}
- run: poetry install
- run: poetry run mypy
env:
Expand All @@ -59,7 +63,10 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: "${{ matrix.python }}"
- run: python -m pip install poetry
- name: Install poetry
uses: abatilo/actions-poetry@v3
with:
poetry-version: latest
- run: poetry install
- run: >-
poetry run pytest \
Expand Down
Loading
Loading