Skip to content

Test latest pip version #2

Test latest pip version

Test latest pip version #2

Workflow file for this run

name: Test latest pip version
on:
workflow_dispatch:
pull_request:
branches:
- master
push:
branches:
- master
tags: "*"
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Python interface from pip
run: |
python -m pip install --upgrade pip
pip install numpy pytest
pip install pdaqp
- name: Run unit tests
run: python -m pytest test/basic.py