Skip to content

Fix exporting path in jsdoc target. #374

Fix exporting path in jsdoc target.

Fix exporting path in jsdoc target. #374

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: psf/black@stable
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install Dependencies
run: |
pip install black isort
- name: black
run: |
black --check src
- name: isort
run: |
isort --check src