Skip to content

Commit

Permalink
cicd: adjust installation checks (#316)
Browse files Browse the repository at this point in the history
Co-authored-by: Kori Kuzma <[email protected]>
  • Loading branch information
jsstevenson and korikuzma authored Mar 30, 2024
1 parent 0c7b328 commit f8dbd4e
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
name: checks
on: [push, pull_request]
jobs:
deps:
pip_install:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
Expand All @@ -15,6 +14,21 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: python3 -m pip install ".[tests,dev,notebooks]"

pipenv_install:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"

- name: Install dependencies
run: |
python -m pip install pipenv
Expand All @@ -30,7 +44,7 @@ jobs:
with:
python-version: "3.11"

- name: Install dependencies
- name: Install dev dependencies
run: python3 -m pip install ".[dev]"

- name: Check style
Expand Down

0 comments on commit f8dbd4e

Please sign in to comment.