Skip to content

Commit b47a39f

Browse files
committed
Try to get the release pipline to work.
1 parent abb2436 commit b47a39f

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/branch.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,30 +6,30 @@ jobs:
66
strategy:
77
fail-fast: false
88
matrix:
9-
python-version: ['3.11']
9+
python-version: ['3.9', '3.10', '3.11']
1010
poetry-version: ['1.4.2']
1111
os: [ubuntu-latest]
1212
runs-on: ${{ matrix.os }}
1313
steps:
1414
- uses: actions/checkout@v3
15-
- uses: actions/setup-python@v3
15+
- uses: actions/setup-python@v4
1616
with:
1717
python-version: ${{ matrix.python-version }}
1818
- name: Run image
19-
uses: abatilo/actions-poetry@v2.1.4
19+
uses: abatilo/actions-poetry@v2
2020
with:
2121
poetry-version: ${{ matrix.poetry-version }}
2222
- name: Install dependencies
2323
run: poetry install
2424
- name: Run tests
2525
run: poetry run pytest --cov=./ --cov-report=xml
2626
- name: Upload coverage to Codecov
27-
uses: codecov/codecov-action@v2
27+
uses: codecov/codecov-action@v3
2828
code-quality:
2929
strategy:
3030
fail-fast: false
3131
matrix:
32-
python-version: ['3.11']
32+
python-version: ['3.9', '3.10', '3.11']
3333
poetry-version: ['1.4.2']
3434
os: [ubuntu-latest]
3535
runs-on: ${{ matrix.os }}
@@ -39,7 +39,7 @@ jobs:
3939
with:
4040
python-version: ${{ matrix.python-version }}
4141
- name: Run image
42-
uses: abatilo/actions-poetry@v2.1.4
42+
uses: abatilo/actions-poetry@v2
4343
with:
4444
poetry-version: ${{ matrix.poetry-version }}
4545
- name: Install dependencies

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python-version: ["3.9", "3.10", "3.11"]
12+
python-version: ['3.9', '3.10', '3.11']
1313
poetry-version: ['1.4.2']
1414
os: [ubuntu-latest]
1515
runs-on: ${{ matrix.os }}

0 commit comments

Comments
 (0)