Skip to content

Commit 25ab0aa

Browse files
Add GitHub CI
1 parent 2fcdb19 commit 25ab0aa

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
on: [push]
2+
3+
jobs:
4+
run-tests:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v4
8+
- name: Setup PDM
9+
uses: pdm-project/setup-pdm@v4
10+
- name: Install dependencies
11+
run: pdm install
12+
- name: Run tests
13+
run: pdm run test

0 commit comments

Comments
 (0)