Skip to content

Commit 89ac1c2

Browse files
committed
added test section for pip installed version
1 parent fbd9209 commit 89ac1c2

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

.github/workflows/tests.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Tests
33
on: [push, pull_request]
44

55
jobs:
6-
tests:
6+
tests-with-conda-install:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v3
@@ -27,3 +27,17 @@ jobs:
2727
with:
2828
name: exported-meshes
2929
path: "*.msh"
30+
31+
tests-with-pip-install:
32+
runs-on: ubuntu-latest
33+
steps:
34+
- uses: actions/checkout@v3
35+
- name: Set up Python
36+
uses: actions/setup-python@v4
37+
with:
38+
python-version: 3.11
39+
- name: Install dependencies
40+
run: |
41+
python -m pip install .
42+
- name: Run tests
43+
run: python -m pytest -v

0 commit comments

Comments
 (0)