Skip to content

Commit 68496f3

Browse files
committed
Add GitHub Actions for running tests 🧪
- Created `.github/workflows/test.yml` file. - Configured testing on push events. - Added job matrix for Ubuntu, macOS, and Windows. - Integrated steps for `poetry` setup and `pytest` execution.
1 parent 10fb0f2 commit 68496f3

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/test.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: 🧪 Testing
2+
3+
on: push
4+
5+
jobs:
6+
test:
7+
runs-on: ${{matrix.os}}
8+
strategy:
9+
matrix:
10+
os: [ubuntu-latest, macos-latest, windows-latest]
11+
12+
steps:
13+
- uses: actions/checkout@v4
14+
15+
- name: Run tests
16+
run: |
17+
pipx run poetry install
18+
pipx run poetry run pytest

0 commit comments

Comments
 (0)