Skip to content

Commit

Permalink
fixed another bug with github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
gerikson committed Jan 20, 2025
1 parent 8782c1e commit f2b2d1c
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,16 +54,18 @@ jobs:
toolchain: stable
profile: minimal
override: true
- name: Set up virtual environment
run: python -m venv venv
- name: Activate virtual environment
run: source venv/bin/activate
- name: Install maturin
run: pip install maturin
- name: Build with maturin
run: maturin develop
- name: pip install
run: |
pip install .[actions]
- name: Install Python dependencies
run: pip install .[actions]
- name: Test deepTools
run: |
pytest -v
run: pytest -v
- name: Build wheel
run: |
python -m build
Expand All @@ -85,13 +87,15 @@ jobs:
toolchain: stable
profile: minimal
override: true
- name: Set up virtual environment
run: python -m venv venv
- name: Activate virtual environment
run: source venv/bin/activate
- name: Install maturin
run: pip install maturin
- name: Build with maturin
run: maturin develop
- name: pip install
run: |
pip install .[actions]
- name: Install Python dependencies
run: pip install .[actions]
- name: Test deepTools
run: |
pytest -v
run: pytest -v

0 comments on commit f2b2d1c

Please sign in to comment.