fic getGSIS for CWW #27
Workflow file for this run
This file contains hidden or 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: 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 |