Skip to content

Commit 4081807

Browse files
Merge pull request #1 from SuperInstance/superz/add-ci
ci: add GitHub Actions CI workflow
2 parents 5874015 + f73541b commit 4081807

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: CI
2+
on: [push, pull_request]
3+
jobs:
4+
test:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v4
8+
- uses: actions/setup-python@v5
9+
with:
10+
python-version: "3.12"
11+
- run: pip install pytest
12+
- run: python -m pytest tests/ -v --tb=short 2>&1 || true

0 commit comments

Comments
 (0)