Skip to content

Commit 5ae19b1

Browse files
committed
Check only 1 theme with first & last supported Python versions
1 parent c155ac8 commit 5ae19b1

8 files changed

+11
-15
lines changed

.github/workflows/simple-program-linux.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ on:
77
- 'releases/**'
88
pull_request:
99

10-
1110
jobs:
1211
simple-program:
1312

@@ -16,7 +15,7 @@ jobs:
1615
strategy:
1716
fail-fast: false
1817
matrix:
19-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
18+
python-version: ["3.7", "3.11"]
2019

2120
steps:
2221
- uses: actions/checkout@v3

.github/workflows/simple-program-macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
18+
python-version: ["3.7", "3.11"]
1919

2020
steps:
2121
- uses: actions/checkout@v3

.github/workflows/simple-program-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
18+
python-version: ["3.7", "3.11"]
1919

2020
steps:
2121
- uses: actions/checkout@v3

.github/workflows/system-monitor-linux.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,8 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
19-
theme: [ "3.5inchTheme2", "Cyberpunk", "Cyberpunk-net", "Landscape6Grid", "Terminal", "bash-dark-green", "bash-dark-green-gpu",
20-
"LandscapeMagicBlue", "BigClock", "LandscapeEarth" ]
18+
python-version: ["3.7", "3.11"]
19+
theme: [ "3.5inchTheme2" ]
2120

2221
steps:
2322
- uses: actions/checkout@v3

.github/workflows/system-monitor-macos.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,8 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
19-
theme: [ "3.5inchTheme2", "Cyberpunk", "Cyberpunk-net", "Landscape6Grid", "Terminal", "bash-dark-green", "bash-dark-green-gpu",
20-
"LandscapeMagicBlue", "BigClock", "LandscapeEarth" ]
18+
python-version: ["3.7", "3.11"]
19+
theme: [ "3.5inchTheme2" ]
2120

2221
steps:
2322
- uses: actions/checkout@v3

.github/workflows/system-monitor-windows.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,8 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
19-
theme: [ "3.5inchTheme2", "Cyberpunk", "Cyberpunk-net", "Landscape6Grid", "Terminal", "bash-dark-green", "bash-dark-green-gpu",
20-
"LandscapeMagicBlue", "BigClock", "LandscapeEarth" ]
18+
python-version: ["3.7", "3.11"]
19+
theme: [ "3.5inchTheme2" ]
2120

2221
steps:
2322
- uses: actions/checkout@v3

.github/workflows/themes-screenshot-on-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Set up Python 3.10
1414
uses: actions/setup-python@v4
1515
with:
16-
python-version: "3.10"
16+
python-version: "3.11"
1717

1818
- name: Install dependencies
1919
run: |

.github/workflows/themes-screenshot-on-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Set up Python 3.10
2828
uses: actions/setup-python@v4
2929
with:
30-
python-version: "3.10"
30+
python-version: "3.11"
3131

3232
- name: Install dependencies
3333
run: |

0 commit comments

Comments
 (0)