Skip to content

nit: spelling error install guide #831

nit: spelling error install guide

nit: spelling error install guide #831

Workflow file for this run

name: shpc linting
on:
# This should run on a push to any branch except main, gh-pages, and binoc
push:
branches-ignore:
- main
- gh-pages
jobs:
formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup black linter
run: conda create --quiet --name black pyflakes
- name: Check Spelling
uses: crate-ci/typos@18bebe05c9c1076df911429745a0a1a2642e6b03 # v1.32.0
with:
files: ./docs/getting_started/ ./docs/index.rst
- name: Lint and format Python code
run: |
export PATH="/usr/share/miniconda/bin:$PATH"
source activate black
pip install -r .github/dev-requirements.txt
pre-commit run --all-files