We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbd9209 commit 89ac1c2Copy full SHA for 89ac1c2
.github/workflows/tests.yml
@@ -3,7 +3,7 @@ name: Tests
3
on: [push, pull_request]
4
5
jobs:
6
- tests:
+ tests-with-conda-install:
7
runs-on: ubuntu-latest
8
steps:
9
- uses: actions/checkout@v3
@@ -27,3 +27,17 @@ jobs:
27
with:
28
name: exported-meshes
29
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