Skip to content

install action: typo #3

install action: typo

install action: typo #3

Workflow file for this run

name: Test installation (& dependencies)
on:
push:
branches:
- main
- dev
jobs:
test-install-import:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@main
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install package
run: |
python -m ensurepip
pip install .
- name: Import package
run: |
python -c "import networkcommons"