Skip to content

Many changes. Should be at a state where radiation, visualizer, and w… #1

Many changes. Should be at a state where radiation, visualizer, and w…

Many changes. Should be at a state where radiation, visualizer, and w… #1

Workflow file for this run

name: pytest-macos
on:
push:
branches: [ master, main ]
pull_request:
branches: [ master, main ]
jobs:
pytest-macos:
runs-on: macos-14
steps:
- name: Checkout PyHelios
uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install XQuartz
run: |
brew install --cask xquartz
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[dev]
- name: Build native libraries
run: |
python build_scripts/build_helios.py --buildmode release --nogpu --verbose
- name: Run pytest
run: |
pytest -v