Skip to content

Commit

Permalink
CI: add basic ci, very minimal to not require repackaging yet
Browse files Browse the repository at this point in the history
  • Loading branch information
ZLLentz committed Dec 10, 2024
1 parent 927e333 commit dbea19b
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: pytest

on:
push:
pull_request:
release:
types:
- created

jobs:
test:
name: "Python 3.9: (pip)"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: pip
run: pip install pytest
- name: pytest
run: pytest -v

0 comments on commit dbea19b

Please sign in to comment.