2022-10-24 21:51:15 +00:00
|
|
|
name: lint
|
|
|
|
|
2022-12-04 00:42:59 +00:00
|
|
|
on:
|
2023-07-21 16:20:24 +00:00
|
|
|
workflow_call:
|
|
|
|
inputs:
|
|
|
|
working-directory:
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
description: "From which folder this pipeline executes"
|
2022-12-04 00:42:59 +00:00
|
|
|
|
|
|
|
env:
|
2023-04-25 01:19:51 +00:00
|
|
|
POETRY_VERSION: "1.4.2"
|
2022-10-24 21:51:15 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2023-07-21 16:20:24 +00:00
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
working-directory: ${{ inputs.working-directory }}
|
2022-10-24 21:51:15 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-12-13 13:48:53 +00:00
|
|
|
python-version:
|
|
|
|
- "3.8"
|
|
|
|
- "3.9"
|
|
|
|
- "3.10"
|
|
|
|
- "3.11"
|
2022-10-24 21:51:15 +00:00
|
|
|
steps:
|
2022-12-13 13:48:53 +00:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Install poetry
|
|
|
|
run: |
|
|
|
|
pipx install poetry==$POETRY_VERSION
|
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
|
|
uses: actions/setup-python@v4
|
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
cache: poetry
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
poetry install
|
2023-07-21 17:36:28 +00:00
|
|
|
- name: Install langchain editable
|
|
|
|
if: ${{ inputs.working-directory != 'langchain' }}
|
|
|
|
run: |
|
|
|
|
pip install -e ../langchain
|
2022-12-13 13:48:53 +00:00
|
|
|
- name: Analysing the code with our lint
|
|
|
|
run: |
|
|
|
|
make lint
|