Many changes. Should be at a state where radiation, visualizer, and w… #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |