Skip to content

Commit

Permalink
Fix platform-specific installation
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr-Milk committed Jan 30, 2024
1 parent 0951e61 commit 4421186
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,14 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install UNIX dependencies
if: ${{ matrix.os != 'windows-latest' }}
- name: Install Linux dependencies
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
apt install openslide-tools
sudo apt-get install -y openslide-tools
- name: Install MacOS dependencies
if: ${{ matrix.os == 'macos-latest' }}
run: |
sudo brew install openslide
- name: Install Project dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 4421186

Please # to comment.