File tree Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change 76
76
with :
77
77
token : ${{ secrets.CODECOV_TOKEN }}
78
78
if : ${{ always() }}
79
+
80
+ checks :
81
+ runs-on : " ubuntu-latest"
82
+ continue-on-error : true
83
+ strategy :
84
+ matrix :
85
+ check : ["style", "spellcheck"]
86
+
87
+ steps :
88
+ - uses : actions/checkout@v4
89
+ with :
90
+ persist-credentials : false
91
+ - name : Install the latest version of uv
92
+ uses : astral-sh/setup-uv@v4
93
+ - name : Install tox
94
+ run : uv tool install tox --with=tox-uv
95
+ - name : Show tox config
96
+ run : tox c -e ${{ matrix.check }}
97
+ - name : Run check
98
+ run : tox -e ${{ matrix.check }}
Original file line number Diff line number Diff line change @@ -48,7 +48,8 @@ uv_resolution =
48
48
min: lowest-direct
49
49
50
50
commands_pre =
51
- python scripts/fetch_templates.py
51
+ # Use py* to disable for other environments
52
+ py3{10,11,12,13}: python scripts/fetch_templates.py
52
53
commands =
53
54
pytest --cov-report term-missing --durations =20 --durations-min =1.0 {posargs:-n auto}
54
55
You can’t perform that action at this time.
0 commit comments