Skip to content

Commit 7a8fbd9

Browse files
committed
Test both static and dynamic installs
1 parent 9b7e699 commit 7a8fbd9

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ jobs:
3232
uses: actions/setup-python@v2
3333
- name: Install tox
3434
run: pip install tox
35-
- name: Install isal
36-
run: sudo apt-get install libisal-dev
3735
- name: Build docs
3836
run: tox -e docs
3937
test:
@@ -45,6 +43,9 @@ jobs:
4543
- 3.7
4644
- 3.8
4745
- 3.9
46+
linking_method:
47+
- static
48+
- dynamic
4849
needs: lint
4950
steps:
5051
- uses: actions/[email protected]
@@ -53,6 +54,7 @@ jobs:
5354
- name: Install tox
5455
run: pip install tox
5556
- name: Install isal
57+
if: ${{ matrix.linking_method == 'dynamic' }}
5658
run: sudo apt-get install libisal-dev
5759
- name: Run tests
5860
run: tox -e py3

0 commit comments

Comments
 (0)