Skip to content

Commit 2619138

Browse files
authored
added GitHub Action for tests
1 parent 2ea9212 commit 2619138

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/tests.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Tests
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v4
11+
12+
- name: Install uv
13+
uses: astral-sh/setup-uv@v6
14+
15+
- name: Install the project
16+
run: uv sync --locked --all-extras --dev
17+
18+
- name: Run tests
19+
run: uv run pytest

0 commit comments

Comments
 (0)