Skip to content

Commit

Permalink
Test: Adjusted OS versions in GitHub Actions test workflow
Browse files Browse the repository at this point in the history
Details:

* Test: Adjusted OS versions in GitHub Actions test workflow because macos-12
  is no longer supported, and ubuntu-latest changed to ubuntu-24.04.

Signed-off-by: Andreas Maier <[email protected]>
  • Loading branch information
andy-maier committed Jan 29, 2025
1 parent ae07330 commit e726e82
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 8 deletions.
41 changes: 33 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,16 @@ jobs:
\"python-version\": \"3.6\", \
\"package_level\": \"latest\" \
}, \
{ \
\"os\": \"ubuntu-latest\", \
\"python-version\": \"3.7\", \
\"package_level\": \"minimum\" \
}, \
{ \
\"os\": \"ubuntu-latest\", \
\"python-version\": \"3.7\", \
\"package_level\": \"latest\" \
}, \
{ \
\"os\": \"macos-latest\", \
\"python-version\": \"3.6\", \
Expand Down Expand Up @@ -79,22 +89,32 @@ jobs:
\"package_level\": \"latest\" \
}, \
{ \
\"os\": \"macos-12\", \
\"os\": \"ubuntu-22.04\", \
\"python-version\": \"3.7\", \
\"package_level\": \"minimum\" \
}, \
{ \
\"os\": \"ubuntu-22.04\", \
\"python-version\": \"3.7\", \
\"package_level\": \"latest\" \
}, \
{ \
\"os\": \"macos-13\", \
\"python-version\": \"3.6\", \
\"package_level\": \"minimum\" \
}, \
{ \
\"os\": \"macos-12\", \
\"os\": \"macos-13\", \
\"python-version\": \"3.6\", \
\"package_level\": \"latest\" \
}, \
{ \
\"os\": \"macos-12\", \
\"os\": \"macos-13\", \
\"python-version\": \"3.7\", \
\"package_level\": \"minimum\" \
}, \
{ \
\"os\": \"macos-12\", \
\"os\": \"macos-13\", \
\"python-version\": \"3.7\", \
\"package_level\": \"latest\" \
} \
Expand All @@ -103,7 +123,7 @@ jobs:
else \
echo "matrix={ \
\"os\": [ \"ubuntu-latest\" ], \
\"python-version\": [ \"3.7\", \"3.12\" ], \
\"python-version\": [ \"3.8\", \"3.12\" ], \
\"package_level\": [ \"minimum\", \"latest\" ], \
\"include\": [ \
{ \
Expand All @@ -116,6 +136,11 @@ jobs:
\"python-version\": \"3.6\", \
\"package_level\": \"latest\" \
}, \
{ \
\"os\": \"ubuntu-22.04\", \
\"python-version\": \"3.7\", \
\"package_level\": \"latest\" \
}, \
{ \
\"os\": \"ubuntu-latest\", \
\"python-version\": \"3.10\", \
Expand All @@ -127,13 +152,13 @@ jobs:
\"package_level\": \"latest\" \
}, \
{ \
\"os\": \"macos-12\", \
\"os\": \"macos-13\", \
\"python-version\": \"3.6\", \
\"package_level\": \"latest\" \
}, \
{ \
\"os\": \"macos-latest\", \
\"python-version\": \"3.8\", \
\"os\": \"macos-13\", \
\"python-version\": \"3.7\", \
\"package_level\": \"latest\" \
}, \
{ \
Expand Down
3 changes: 3 additions & 0 deletions docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ Released: not yet

* Fixed new issues of Pylint 3.3.

* Test: Adjusted OS versions in GitHub Actions test workflow because macos-12
is no longer supported, and ubuntu-latest changed to ubuntu-24.04.

**Enhancements:**

**Cleanup:**
Expand Down

0 comments on commit e726e82

Please sign in to comment.