Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
mtkennerly committed Nov 12, 2024
1 parent eedd5b5 commit 91dfafa
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@ jobs:
- '3.9'
- '3.10'
- '3.11'
- '3.12'
- '3.13'
poetry-version:
- '1.2.2'
- '1.3.2'
Expand All @@ -41,10 +39,19 @@ jobs:
- '1.7.1'
- '1.8.4'
experimental: [false]
unlocked: [false]
include:
- python-version: '3.11'
poetry-version: 'git+https://github.com/radoering/poetry.git@pep621-support'
experimental: true
- python-version: '3.12'
poetry-version: '1.8.4'
experimental: false
unlocked: true
- python-version: '3.13'
poetry-version: '1.8.4'
experimental: false
unlocked: true
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -55,6 +62,9 @@ jobs:
- if: ${{ startsWith(matrix.poetry-version, 'git') }}
run: |
echo "USE_PEP621=1" >> $GITHUB_ENV
- if: ${{ matrix.unlocked }}
run: |
rm poetry.lock
- run: |
pip install pipx
pipx install ${{ startsWith(matrix.poetry-version, 'git') && matrix.poetry-version || format('poetry=={0}', matrix.poetry-version) }}
Expand Down

0 comments on commit 91dfafa

Please sign in to comment.