Skip to content

Add new noise distributions #110

Add new noise distributions

Add new noise distributions #110

Workflow file for this run

name: Tests
on:
pull_request:
branches: [main]
paths:
[
"autonav/**",
"tests/**",
"pyproject.toml",
".github/workflows/test.yml",
]
push:
branches: [main]
paths:
[
"autonav/**",
"tests/**",
"pyproject.toml",
".github/workflows/test.yml",
]
tags: "*"
jobs:
run-tests:
name: Python ${{ matrix.version }} - ${{ matrix.os }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version: ["3.8", "3.12"]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Setup latest Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.version }}
- name: Install dependencies
run: |
pip install pip --upgrade
pip install .[devel]
- name: Test with pytest
run: pytest