Skip to content

fic getGSIS for CWW #27

fic getGSIS for CWW

fic getGSIS for CWW #27

Workflow file for this run

name: CI
on:
push:
branches: [main, test]
tags: [v*]
pull_request:
jobs:
test:
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12'] # Specify the Python versions you want to test against
os: [ubuntu-latest, windows-latest]
name: Python ${{ matrix.python-version }} - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pyNFFT3
pip install numpy
pip install scipy
- name: Run tests
run: |
python -m tests.run_tests