Skip to content

Commit 3ecdbc6

Browse files
committed
Make gha consistent
1 parent 11bc63f commit 3ecdbc6

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

.github/workflows/release.yaml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,15 @@ on:
44
types: [published]
55
jobs:
66
build:
7-
runs-on: ${{ matrix.os }}
8-
strategy:
9-
matrix:
10-
os: [ubuntu-latest]
11-
python-version: ["3.12"]
7+
runs-on: ubuntu-latest
128
steps:
139
- uses: actions/checkout@v4
14-
- name: Setup, Python ${{ matrix.python-version }}
10+
- name: Setup Python
1511
uses: actions/setup-python@v5
1612
with:
17-
python-version: ${{ matrix.python-version }}
13+
python-version: "3.12"
1814
architecture: x64
19-
- name: Deploy with Python ${{ matrix.python-version }}
15+
- name: Deploy
2016
env:
2117
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.POETRY_PYPI_TOKEN_PYPI }}
2218
run: |

.github/workflows/testing.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Select Python 3.12
1414
uses: actions/setup-python@v5
1515
with:
16-
python-version: 3.12
16+
python-version: "3.12"
1717
architecture: x64
1818
- name: Install Dependencies
1919
run: |
@@ -57,7 +57,7 @@ jobs:
5757
- name: Select Python 3.12
5858
uses: actions/setup-python@v5
5959
with:
60-
python-version: 3.12
60+
python-version: "3.12"
6161
architecture: x64
6262
- name: Install Dependencies
6363
run: |

0 commit comments

Comments
 (0)