Skip to content

use wait_for_srq in OLCurrentSourceGPIB #106

use wait_for_srq in OLCurrentSourceGPIB

use wait_for_srq in OLCurrentSourceGPIB #106

Workflow file for this run

name: Tests
on: [push, pull_request]
env:
PY_COLORS: 1
COLUMNS: 110
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
os: [windows, ubuntu, macos]
architecture: [x64]
include:
- python-version: "3.x"
os: windows
architecture: x86
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: ${{ matrix.architecture }}
- name: Install dependencies and package
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade setuptools wheel
python -m pip install --upgrade --editable .[tests]
- name: Run tests
run: python -m pytest