Skip to content

update pip audit

update pip audit #303

Workflow file for this run

name: pydocstyle
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pydocstyle
pip install .
python3 -c "import electricpy; print('electricpy.__file__')"
- name: Test NumpyDoc Style
run: |
cd electricpy
pydocstyle --convention=numpy