We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a183d91 commit 38acc24Copy full SHA for 38acc24
.github/workflows/run_tox.yaml
@@ -0,0 +1,29 @@
1
+concurrency:
2
+ group: check-${{ github.ref }}
3
+ cancel-in-progress: true
4
+jobs:
5
+ test:
6
+ name: test with ${{ matrix.env }} on ${{ matrix.os }}
7
+ runs-on: ${{ matrix.os }}
8
+ strategy:
9
+ fail-fast: false
10
+ matrix:
11
+ env:
12
+ - "3.13"
13
+ os:
14
+ - ubuntu-latest
15
+ - macos-latest
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+ - name: Install the latest version of uv
19
+ uses: astral-sh/setup-uv@v5
20
+ - name: Install tox
21
+ run: uv tool install --python-preference only-managed --python 3.13 tox --with tox-uv
22
+ - name: Run test suite
23
+ run: uv run tox
24
+name: run tox
25
+on:
26
+ workflow_dispatch:
27
+ push:
28
+ branches: ["main"]
29
+ pull_request:
0 commit comments