mirror of
https://github.com/hwchase17/langchain
synced 2024-11-08 07:10:35 +00:00
5b3fc86cfd
Make it clearer how to run equivalent commands locally Not a perfect 1:1, but will help people get started ![Screenshot 2024-02-01 at 10 53 34 AM](https://github.com/langchain-ai/langchain/assets/9557659/da271aaf-d5db-41e3-9379-cb1d8a0232c5)
37 lines
832 B
YAML
37 lines
832 B
YAML
---
|
|
name: CI / cd . / make spell_check
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
pull_request:
|
|
branches: [master]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
codespell:
|
|
name: (Check for spelling errors)
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install Dependencies
|
|
run: |
|
|
pip install toml
|
|
|
|
- name: Extract Ignore Words List
|
|
run: |
|
|
# Use a Python script to extract the ignore words list from pyproject.toml
|
|
python .github/workflows/extract_ignored_words_list.py
|
|
id: extract_ignore_words
|
|
|
|
- name: Codespell
|
|
uses: codespell-project/actions-codespell@v2
|
|
with:
|
|
skip: guide_imports.json
|
|
ignore_words_list: ${{ steps.extract_ignore_words.outputs.ignore_words_list }}
|