Skip to content

Commit

Permalink
Use default poetry-version from shared workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
pronovic committed Mar 18, 2024
1 parent e0ec5e6 commit 1ea65a1
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/test-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,29 +16,26 @@ concurrency:
jobs:
linux-build-and-test:
name: "Linux"
uses: pronovic/gha-shared-workflows/.github/workflows/poetry-build-and-test.yml@v4
uses: pronovic/gha-shared-workflows/.github/workflows/poetry-build-and-test.yml@v5
secrets: inherit
with:
matrix-os-version: "[ 'ubuntu-latest' ]"
matrix-python-version: "[ '3.9', '3.10', '3.11', '3.12' ]" # run Linux tests on all supported Python versions
poetry-version: "1.8.0"
enable-coveralls: true # only report to coveralls.io for tests that run on Linux
macos-build-and-test:
name: "MacOS"
uses: pronovic/gha-shared-workflows/.github/workflows/poetry-build-and-test.yml@v4
uses: pronovic/gha-shared-workflows/.github/workflows/poetry-build-and-test.yml@v5
secrets: inherit
with:
matrix-os-version: "[ 'macos-latest' ]"
matrix-python-version: "[ '3.12' ]" # only run MacOS tests on latest Python
poetry-version: "1.8.0"
enable-coveralls: false
release:
name: "Release"
if: github.ref_type == 'tag'
uses: pronovic/gha-shared-workflows/.github/workflows/poetry-release.yml@v4
uses: pronovic/gha-shared-workflows/.github/workflows/poetry-release.yml@v5
needs: [ linux-build-and-test, macos-build-and-test ]
secrets: inherit
with:
python-version: "3.9"
poetry-version: "1.8.0"
publish-pypi: true

0 comments on commit 1ea65a1

Please sign in to comment.