Skip to content

Commit efea217

Browse files
committed
Add GitHub Actions workflow for testing with uv
1 parent dff5aad commit efea217

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Test
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- "*"
10+
11+
jobs:
12+
test:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout code
16+
uses: actions/checkout@v4
17+
18+
- name: Install dependencies
19+
run: make init-dev
20+
21+
- name: Install and run tests with uv
22+
uses: astral-sh/uv-action@v7
23+
with:
24+
dependencies: .[dev]
25+
run: make test

0 commit comments

Comments
 (0)