Skip to content

Create voicecoil.rst #41

Create voicecoil.rst

Create voicecoil.rst #41

Workflow file for this run

name: Test Docs
on:
push:
branches: [ main ]
workflow_dispatch:
jobs:
tests:
runs-on: ubuntu-latest
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v3
- name: Install Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: python3 -m pip install --upgrade pip
- name: Install Dependencies
run: pip install -e .[docs]
- name: Test with unittest
run: python -m unittest discover -s tests