Skip to content

Commit

Permalink
ci(github): update poetry version in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
vzhd1701 committed Oct 19, 2023
1 parent e4d1ba3 commit f6f31bf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release_github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:

env:
BUILD_PYTHON_VERSION: 3.8
BUILD_POETRY_VERSION: 1.4
BUILD_POETRY_VERSION: 1.6.1
PACKAGE_NAME: enex2notion

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

env:
BUILD_PYTHON_VERSION: 3.8
BUILD_POETRY_VERSION: 1.4
BUILD_POETRY_VERSION: 1.6.1
PACKAGE_NAME: enex2notion

jobs:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ on:
- "**/version.py"

env:
BUILD_POETRY_VERSION: 1.4
BUILD_POETRY_VERSION: 1.6.1
PACKAGE_NAME: enex2notion

jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
Expand Down Expand Up @@ -71,6 +71,6 @@ jobs:

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9'
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.12'
with:
token: ${{ secrets.CODECOV_TOKEN }}

0 comments on commit f6f31bf

Please sign in to comment.