Skip to content

Install all Python dependencies on macOS #47

Install all Python dependencies on macOS

Install all Python dependencies on macOS #47

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os: [ubuntu-24.04, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: ./.github/install-dependencies.sh
- name: Build
run: |
if [ "$RUNNER_OS" != "macOS" ]; then
pip install tox
fi
tox
PYTHONPATH=. python -m wincoll --help