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-linux
on:
push:
branches: [ master, main ]
pull_request:
branches: [ master, main ]
jobs:
pytest-linux:
runs-on: ubuntu-24.04
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 Helios dependencies
run: |
cd helios-core
chmod +x utilities/dependencies.sh
bash utilities/dependencies.sh VIS
- 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