Skip to content

Commit aec1f12

Browse files
committed
run unit tests in the pipeline
1 parent 95862ae commit aec1f12

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

.github/workflows/tests.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Lint
2+
on: [pull_request]
3+
jobs:
4+
lint:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v4
8+
- uses: astral-sh/setup-uv@v4
9+
with:
10+
version: "latest"
11+
- uses: actions/setup-python@v4
12+
with:
13+
python-version: "3.12"
14+
- run: uv sync --group dev
15+
- run: uv run pytest tests

0 commit comments

Comments
 (0)