Skip to content

Commit fffc079

Browse files
ci testing
1 parent 95b11c9 commit fffc079

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

.github/ci.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: CI
2+
on:
3+
push:
4+
branches: [ "main" ]
5+
pull_request:
6+
branches: [ "main" ]
7+
8+
jobs:
9+
test:
10+
name: setup and run tests
11+
runs-on: ubuntu-latest
12+
13+
strategy:
14+
matrix:
15+
python-version: ["3.12"]
16+
17+
steps:
18+
- uses: actions/checkout@v4
19+
20+
- name: Install uv
21+
uses: astral-sh/setup-uv@v5
22+
23+
- name: Install the project
24+
run: uv sync --locked --all-extras --dev
25+
26+
- name: Run tests
27+
run: uv run pytest tests

.github/docs.yml

Whitespace-only changes.

0 commit comments

Comments
 (0)