Skip to content

Fix link to Clos Fabric Analysis example in tutorial #139

Fix link to Clos Fabric Analysis example in tutorial

Fix link to Clos Fabric Analysis example in tutorial #139

Workflow file for this run

# Run unit tests and check test coverage
name: Python-test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.13"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install '.[dev]'
- name: Test with pytest and check test coverage
run: |
pytest