Skip to content

Commit 65e27f3

Browse files
committed
ci: Run tox checks
1 parent 2975662 commit 65e27f3

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,3 +157,21 @@ jobs:
157157
file: coverage.xml
158158
token: ${{ secrets.CODECOV_TOKEN }}
159159
if: ${{ always() }}
160+
161+
checks:
162+
runs-on: 'ubuntu-latest'
163+
continue-on-error: true
164+
strategy:
165+
matrix:
166+
check: ['style', 'spellcheck']
167+
168+
steps:
169+
- uses: actions/checkout@v4
170+
- name: Install the latest version of uv
171+
uses: astral-sh/setup-uv@v3
172+
- name: Show tox config
173+
run: uvx tox c
174+
- name: Show tox config (this call)
175+
run: uvx tox c -e ${{ matrix.check }}
176+
- name: Run check
177+
run: uvx tox -e ${{ matrix.check }}

0 commit comments

Comments
 (0)