Skip to content

Lorentz factor fix

Lorentz factor fix #28

name: ubuntu-linux
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build-linux:
runs-on: ubuntu-latest
strategy:
max-parallel: 5
steps:
- uses: actions/checkout@v4
- name: Setup Miniconda (conda)
uses: conda-incubator/setup-miniconda@v3
with:
activate-environment: xrd-sim-env
python-version: "3.13"
channels: conda-forge
channel-priority: strict
auto-activate-base: false
auto-update-conda: true
use-mamba: false
cache: true
- name: Show conda info
shell: bash -l {0}
run: |
conda info
conda list
python --version
- name: Install dependencies
shell: bash -l {0}
run: |
conda env list
conda install -y -n xrd-sim-env -c conda-forge netcdf4 pip
python -m pip install --upgrade pip
pip install -e .
- name: Test with pytest
shell: bash -l {0}
run: |
conda install -y -n xrd-sim-env -c conda-forge pytest
pytest -v