Skip to content

Suppress 1e-5 discrepancy warnings for detection probability #17

Suppress 1e-5 discrepancy warnings for detection probability

Suppress 1e-5 discrepancy warnings for detection probability #17

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.14"
- name: Lint with ruff
run: |
pip install ruff
ruff check .
ruff format --check .
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .
- name: Run tests with unittest
env:
ICECUBE_PASSWORD: ${{ secrets.ICECUBE_PASSWORD }}
run: |
./tests/run.sh