Skip to content

Version 122

Version 122 #1422

Workflow file for this run

name: CI Test
on: [pull_request]
jobs:
build-linux:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest>=7.2
- name: Install CNApy
run: |
pip install .
- name: Test CNApy
run: |
pytest -v ./cnapy/tests/test.py
build-windows:
runs-on: "windows-latest"
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest>=7.2
- name: Install CNApy
run: |
pip install .
- name: Test CNApy
run: |
pytest -v ./cnapy/tests/test.py
build-macos:
runs-on: "macos-latest"
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest>=7.2
- name: Install CNApy
run: |
pip install .
- name: Test CNApy
run: |
pytest -v ./cnapy/tests/test.py