rmsimage negative rms fallback, fixes #215 (#242) #354
This file contains 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: Build and test PyBDSF | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Apt install required packages | |
run: | | |
sudo apt-get install -y libboost-python-dev libboost-numpy-dev | |
- name: Build and install PyBDSF | |
run: | | |
python -m pip install . | |
- name: Test PyBDSF | |
run: | | |
cd test && python tbdsf_process_image.py |