Skip to content

Commit f397e40

Browse files
committed
Add CI configuration.
1 parent bc2d92f commit f397e40

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/ci.yaml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
on: [push, pull_request, merge_group]
2+
3+
name: CI
4+
jobs:
5+
6+
test:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Check out source code
10+
uses: actions/checkout@v3
11+
with:
12+
fetch-depth: 0
13+
- name: Set up Poetry and PDM
14+
uses: pdm-project/setup-pdm@v3
15+
- name: Install dependencies
16+
run: |
17+
pdm install --dev
18+
- name: Run tests
19+
run: |
20+
pdm run test

0 commit comments

Comments
 (0)