Skip to content

Commit 6dde694

Browse files
authored
Merge branch 'main' into main
2 parents 5206503 + 0d95262 commit 6dde694

File tree

2 files changed

+28
-4
lines changed

2 files changed

+28
-4
lines changed

.github/workflows/tox-test.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
run: |
27+
tox

OWNERS

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
approvers:
2-
- myakove
3-
- rnetser
2+
- dbasunag
43
reviewers:
5-
- myakove
6-
- rnetser
74
- dbasunag

0 commit comments

Comments
 (0)