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.
2 parents 5206503 + 0d95262 commit 6dde694Copy full SHA for 6dde694
.github/workflows/tox-test.yml
@@ -0,0 +1,27 @@
1
+name: Tox Tests
2
+
3
+on:
4
+ pull_request:
5
+ types: [opened, synchronize]
6
7
+jobs:
8
+ tox-tests:
9
+ runs-on: ubuntu-latest
10
11
+ concurrency:
12
+ group: ${{ github.workflow }}-${{github.event.pull_request.number}}
13
+ cancel-in-progress: true
14
15
+ steps:
16
+ - uses: actions/checkout@v5
17
18
+ - name: Install uv
19
+ uses: astral-sh/setup-uv@v6
20
21
+ - name: Install tox-uv
22
+ run: |
23
+ uv tool install tox --with tox-uv
24
25
+ - name: Run tox environments
26
27
+ tox
OWNERS
@@ -1,7 +1,4 @@
approvers:
- - myakove
- - rnetser
+ - dbasunag
reviewers:
- dbasunag
0 commit comments