Skip to content

Fixing docs

Fixing docs #28

Workflow file for this run

name: CI
on:
push:
branches: [main, test]
tags: [v*]
pull_request:
jobs:
test:
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10'] # 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 numpy py-cpuinfo packaging
- name: Run tests
run: |
python -m tests.run_tests