Skip to content

Commit

Permalink
ci with and without extras
Browse files Browse the repository at this point in the history
  • Loading branch information
hgrecco committed Dec 23, 2021
1 parent e6b008e commit 5f3ecf6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ jobs:
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9, '3.10']
extras: [true, false]

runs-on: ubuntu-latest

Expand Down Expand Up @@ -41,7 +42,10 @@ jobs:
- name: Install dependencies
run: |
pip install .[test]
pip install -r supported_pkgs.txt
- name: Install extras
if: ${{ matrix.extras != false }}
run: pip install -r supported_pkgs.txt

- name: Run Tests
run: |
Expand Down

0 comments on commit 5f3ecf6

Please sign in to comment.