Skip to content

Commit fed3a27

Browse files
committed
added ci runner
1 parent b63c8ef commit fed3a27

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/tests.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Tests
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
workflow_dispatch:
9+
10+
jobs:
11+
test:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
- name: Install the latest version of uv
16+
uses: astral-sh/setup-uv@v6
17+
- name: Run tests
18+
run: make test

0 commit comments

Comments
 (0)