Skip to content

Fix parallel edge-edge dtype #335

Fix parallel edge-edge dtype

Fix parallel edge-edge dtype #335

Workflow file for this run

name: Python
on:
push:
branches:
- main
- python
pull_request:
branches:
- main
jobs:
Build:
name: ${{ matrix.name }} Python ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.10"]
include:
- os: ubuntu-latest
name: Linux
- os: windows-latest
name: Windows
- os: macOS-latest
name: macOS
steps:
- name: Checkout Repository
uses: actions/checkout@v3
with:
fetch-depth: 10
- name: Set up Python ${{ matrix.python-version }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: Build and Install
run: pip install --verbose .
- name: Import Test
run: python -c "import ipctk"