Skip to content

Commit

Permalink
some small improvements to the github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
derNarr committed Apr 25, 2024
1 parent 7275d5e commit 75c0db2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build and upload releases
name: Build and upload releases (sdist only)

on:
release:
Expand All @@ -10,21 +10,21 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.11']
python-version: ['3.12']
# os: [ubuntu-latest, macOS-latest, windows-latest]
# python-version: ['3.8', '3.9', '3.10', '3.11']
poetry-version: [1.6]
poetry-version: ['1.8']
fail-fast: false
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Run image
uses: abatilo/actions-poetry@v2.1.3
uses: abatilo/actions-poetry@v2
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Install package
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-test-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
python-version: ['3.9', '3.10', '3.11', '3.12']
poetry-version: ['1.8.2']
poetry-version: ['1.8']
fail-fast: false
runs-on: ${{ matrix.os }}

Expand All @@ -23,7 +23,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Run image
uses: abatilo/actions-poetry@v2.1.3
uses: abatilo/actions-poetry@v2
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Configure test PyPI
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
python-version: ['3.9', '3.12']
poetry-version: ["1.8.2"]
poetry-version: ["1.8"]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
Expand Down

0 comments on commit 75c0db2

Please sign in to comment.