@@ -40,23 +40,21 @@ jobs:
40
40
needs : [unit]
41
41
strategy :
42
42
fail-fast : false
43
- matrix :
44
- python-version : ["3.8", "3.9", "3.10", "3.11", "3.12"]
45
43
steps :
46
44
- uses : actions/checkout@v4
47
45
with :
48
46
fetch-depth : 0
49
47
- name : Set up Python ${{ matrix.python-version }}
50
48
uses : actions/setup-python@v5
51
49
with :
52
- python-version : ${{ matrix.python-version }}
50
+ python-version : ' 3.8 '
53
51
- name : Install dependencies
54
52
run : make install
55
53
- name : Test instance changes on this branch
56
54
run : make test-changes T_FLAGS+='-n 10 --json-report --json-report-file=report/report.json'
57
55
# Only run summary once
58
56
- name : all summary
59
- if : (success() || failure()) && matrix.python-version == '3.8'
57
+ if : (success() || failure())
60
58
run : |
61
59
make github-summary >> $GITHUB_STEP_SUMMARY
62
60
instance-tests :
@@ -65,22 +63,20 @@ jobs:
65
63
needs : [unit]
66
64
strategy :
67
65
fail-fast : false
68
- matrix :
69
- python-version : ["3.8", "3.9", "3.10", "3.11", "3.12"]
70
66
steps :
71
67
- uses : actions/checkout@v4
72
68
- name : Set up Python ${{ matrix.python-version }}
73
69
uses : actions/setup-python@v5
74
70
with :
75
- python-version : ${{ matrix.python-version }}
71
+ python-version : ' 3.8 '
76
72
- name : Install dependencies
77
73
run : make install
78
74
- name : Test all instances
79
75
run : |
80
76
make report! T_FLAGS+='-n 10' || true
81
77
# Only run summary once
82
78
- name : summary
83
- if : (success() || failure()) && matrix.python-version == '3.8'
79
+ if : (success() || failure())
84
80
run : |
85
81
make github-summary >> $GITHUB_STEP_SUMMARY
86
82
0 commit comments