Skip to content

Commit 29aecc0

Browse files
authored
Merge pull request #88 from cclauss/add-the-action
Add a GitHub Action to run pytest
2 parents e120c40 + 06cfa7b commit 29aecc0

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
name: ci
2+
on: [pull_request, push]
3+
jobs:
4+
pytest:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v6
8+
- run: pipx run pytest --doctest-modules

0 commit comments

Comments
 (0)