Skip to content

Update documentation #8

Update documentation

Update documentation #8

Workflow file for this run

name: Tests
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r testing_requirements.txt
- name: Lint with ruff
run: |
ruff --format=github --ignore=E501 --target-version=py310 .
- name: Format with black
run: |
black --check --diff --color .