File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed
Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change 1414 - " main"
1515
1616jobs :
17+ settings :
18+ runs-on : " ubuntu-latest"
19+ name : " Define workflow settings"
20+ outputs :
21+ default-python-version : " 3.12"
22+ steps :
23+ - name : " Define settings"
24+ run : " "
25+
1726 run-tests-and-coverage :
1827 name : " Run pytest with coverage."
1928 runs-on : " ${{ matrix.os }}"
3039 - " 3.11"
3140 - " 3.12"
3241 - " 3.13"
42+ - " 3.14"
3343
3444 steps :
3545 - name : " Repo checkout"
6878 - name : " Set up Python"
6979 uses : " actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b"
7080 with :
71- python-version : " 3.12 "
81+ python-version : " ${{ needs.settings.outputs.default-python-version }} "
7282
7383 - name : " Install nox"
7484 run : |
97107 - name : " Set up Python"
98108 uses : " actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b"
99109 with :
100- python-version : " 3.12 "
110+ python-version : " ${{ needs.settings.outputs.default-python-version }} "
101111
102112 - name : " Install nox"
103113 run : |
You can’t perform that action at this time.
0 commit comments