Skip to content

Commit 1710615

Browse files
authored
fix python nextgen github workflow (#15092)
1 parent b59d535 commit 1710615

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

modules/openapi-generator/src/main/resources/python-nextgen/github-workflow.mustache

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ jobs:
1616
matrix:
1717
python-version: ["3.7", "3.8", "3.9", "3.10"]
1818

19-
steps:s
19+
steps:
2020
- uses: actions/checkout@v3
2121
- name: Set up Python ${{ matrix.python-version }}
2222
uses: actions/setup-python@v4
2323
with:
24-
python-version: ${{ matrix.python-version }}s
24+
python-version: ${{ matrix.python-version }}
2525
- name: Install dependencies
2626
run: |
2727
python -m pip install --upgrade pip
@@ -35,4 +35,4 @@ jobs:
3535
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
3636
- name: Test with pytest
3737
run: |
38-
pytest
38+
pytest

samples/client/echo_api/python-nextgen/.github/workflows/python.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ jobs:
1515
matrix:
1616
python-version: ["3.7", "3.8", "3.9", "3.10"]
1717

18-
steps:s
18+
steps:
1919
- uses: actions/checkout@v3
2020
- name: Set up Python ${{ matrix.python-version }}
2121
uses: actions/setup-python@v4
2222
with:
23-
python-version: ${{ matrix.python-version }}s
23+
python-version: ${{ matrix.python-version }}
2424
- name: Install dependencies
2525
run: |
2626
python -m pip install --upgrade pip
@@ -34,4 +34,4 @@ jobs:
3434
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
3535
- name: Test with pytest
3636
run: |
37-
pytest
37+
pytest

samples/openapi3/client/petstore/python-nextgen-aiohttp/.github/workflows/python.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ jobs:
1515
matrix:
1616
python-version: ["3.7", "3.8", "3.9", "3.10"]
1717

18-
steps:s
18+
steps:
1919
- uses: actions/checkout@v3
2020
- name: Set up Python ${{ matrix.python-version }}
2121
uses: actions/setup-python@v4
2222
with:
23-
python-version: ${{ matrix.python-version }}s
23+
python-version: ${{ matrix.python-version }}
2424
- name: Install dependencies
2525
run: |
2626
python -m pip install --upgrade pip
@@ -34,4 +34,4 @@ jobs:
3434
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
3535
- name: Test with pytest
3636
run: |
37-
pytest
37+
pytest

samples/openapi3/client/petstore/python-nextgen/.github/workflows/python.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ jobs:
1515
matrix:
1616
python-version: ["3.7", "3.8", "3.9", "3.10"]
1717

18-
steps:s
18+
steps:
1919
- uses: actions/checkout@v3
2020
- name: Set up Python ${{ matrix.python-version }}
2121
uses: actions/setup-python@v4
2222
with:
23-
python-version: ${{ matrix.python-version }}s
23+
python-version: ${{ matrix.python-version }}
2424
- name: Install dependencies
2525
run: |
2626
python -m pip install --upgrade pip
@@ -34,4 +34,4 @@ jobs:
3434
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
3535
- name: Test with pytest
3636
run: |
37-
pytest
37+
pytest

0 commit comments

Comments
 (0)