mirror of
https://github.com/theupdateframework/python-tuf
synced 2026-05-24 10:08:28 +00:00
workflows: Only test old Pythons on linux
* This fixes current CI (new mac runners do not have old pythons) * This is also sensible: running the complete matrix seems wasteful Signed-off-by: Jussi Kukkonen <jkukkonen@google.com>
This commit is contained in:
parent
ffc1c3f41f
commit
5f854b6440
1 changed files with 6 additions and 1 deletions
7
.github/workflows/_test.yml
vendored
7
.github/workflows/_test.yml
vendored
|
|
@ -37,7 +37,12 @@ jobs:
|
|||
strategy:
|
||||
matrix:
|
||||
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
|
||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||
os: [ubuntu-latest]
|
||||
include:
|
||||
- python-version: "3.12"
|
||||
os: macos-latest
|
||||
- python-version: "3.12"
|
||||
os: windows-latest
|
||||
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue