Skip to content

feat: Added test matrix for multiple versions #81

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,16 @@ on:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
fail-fast: false

steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: 3.9
python-version: ${{ matrix.python-version }}
architecture: x64
- run: pip install poetry==1.3.1
- run: poetry install
Expand All @@ -30,6 +35,6 @@ jobs:
fail_ci_if_error: true
files: ./coverage.xml
flags: unittests
name: codecov-umbrella
path_to_write_report: .codecov_report.txt
verbose: true
name: codecov-umbrella-${{ matrix.python-version }}
path_to_write_report: .codecov_report.${{ matrix.python-version }}.txt
verbose: true
2 changes: 1 addition & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "openapi-python-generator"
version = "1.1.0"
version = "1.1.1"
description = "Openapi Python Generator"
authors = ["Marco Müllner <[email protected]>"]
license = "MIT"
Expand All @@ -26,6 +26,7 @@ click = "^8.1.3"
black = ">=21.10b0"
isort = ">=5.10.1"
openapi-pydantic = "^0.5.0"
pyyaml = "^6.0.2"

[tool.poetry.dev-dependencies]
Pygments = ">=2.10.0"
Expand Down
Loading