mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +00:00
c2a3021bb0
Signed-off-by: ChengZi <chen.zhang@zilliz.com> Co-authored-by: Eugene Yurtsev <eyurtsev@gmail.com> Co-authored-by: Bagatur <22008038+baskaryan@users.noreply.github.com> Co-authored-by: Dan O'Donovan <dan.odonovan@gmail.com> Co-authored-by: Tom Daniel Grande <tomdgrande@gmail.com> Co-authored-by: Grande <Tom.Daniel.Grande@statsbygg.no> Co-authored-by: Bagatur <baskaryan@gmail.com> Co-authored-by: ccurme <chester.curme@gmail.com> Co-authored-by: Harrison Chase <hw.chase.17@gmail.com> Co-authored-by: Tomaz Bratanic <bratanic.tomaz@gmail.com> Co-authored-by: ZhangShenao <15201440436@163.com> Co-authored-by: Friso H. Kingma <fhkingma@gmail.com> Co-authored-by: ChengZi <chen.zhang@zilliz.com> Co-authored-by: Nuno Campos <nuno@langchain.dev> Co-authored-by: Morgante Pell <morgantep@google.com>
37 lines
937 B
YAML
37 lines
937 B
YAML
---
|
|
name: CI / cd . / make spell_check
|
|
|
|
on:
|
|
push:
|
|
branches: [master, v0.1, v0.2]
|
|
pull_request:
|
|
|
|
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,*.ambr,./cookbook/data/imdb_top_1000.csv,*.lock
|
|
# ignore_words_list: ${{ steps.extract_ignore_words.outputs.ignore_words_list }}
|
|
# exclude_file: ./.github/workflows/codespell-exclude
|