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

name: pytest-windows
on:
push:
branches: [ master, main ]
pull_request:
branches: [ master, main ]
jobs:
pytest-windows:
runs-on: windows-2022
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: Setup MSVC
uses: ilammy/msvc-dev-cmd@v1
- 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