Skip to content

Region Sampler bug fixed #122

Region Sampler bug fixed

Region Sampler bug fixed #122

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of operating systems
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Operating systems
on:
push:
branches: [ "main", "dev" ]
pull_request:
branches: [ "main", "dev" ]
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
python --version
python -m pip install --upgrade pip setuptools wheel
python -m pip install .[dev]
- name: Run unit tests
run: |
python epios/run_tests.py --unit