mirror of
https://github.com/hwchase17/langchain.git
synced 2025-06-19 13:23:35 +00:00
infra: ci naming 2 (#16893)
This commit is contained in:
parent
b1e7130d8a
commit
13a6756067
10
.github/workflows/_all_ci.yml
vendored
10
.github/workflows/_all_ci.yml
vendored
@ -36,35 +36,35 @@ env:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
lint:
|
lint:
|
||||||
name: make lint
|
name: "-"
|
||||||
uses: ./.github/workflows/_lint.yml
|
uses: ./.github/workflows/_lint.yml
|
||||||
with:
|
with:
|
||||||
working-directory: ${{ inputs.working-directory }}
|
working-directory: ${{ inputs.working-directory }}
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
|
||||||
test:
|
test:
|
||||||
name: make test
|
name: "-"
|
||||||
uses: ./.github/workflows/_test.yml
|
uses: ./.github/workflows/_test.yml
|
||||||
with:
|
with:
|
||||||
working-directory: ${{ inputs.working-directory }}
|
working-directory: ${{ inputs.working-directory }}
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
|
||||||
compile-integration-tests:
|
compile-integration-tests:
|
||||||
name: poetry run pytest -m compile tests/integration_tests
|
name: "-"
|
||||||
uses: ./.github/workflows/_compile_integration_test.yml
|
uses: ./.github/workflows/_compile_integration_test.yml
|
||||||
with:
|
with:
|
||||||
working-directory: ${{ inputs.working-directory }}
|
working-directory: ${{ inputs.working-directory }}
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
name: check dependencies
|
name: "-"
|
||||||
uses: ./.github/workflows/_dependencies.yml
|
uses: ./.github/workflows/_dependencies.yml
|
||||||
with:
|
with:
|
||||||
working-directory: ${{ inputs.working-directory }}
|
working-directory: ${{ inputs.working-directory }}
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
|
||||||
extended-tests:
|
extended-tests:
|
||||||
name: make extended_tests / python${{ matrix.python-version }}
|
name: "make extended_tests #${{ matrix.python-version }}"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
|
@ -24,7 +24,7 @@ jobs:
|
|||||||
- "3.9"
|
- "3.9"
|
||||||
- "3.10"
|
- "3.10"
|
||||||
- "3.11"
|
- "3.11"
|
||||||
name: python${{ matrix.python-version }}
|
name: "poetry run pytest -m compile tests/integration_tests #${{ matrix.python-version }}"
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
2
.github/workflows/_dependencies.yml
vendored
2
.github/workflows/_dependencies.yml
vendored
@ -28,7 +28,7 @@ jobs:
|
|||||||
- "3.9"
|
- "3.9"
|
||||||
- "3.10"
|
- "3.10"
|
||||||
- "3.11"
|
- "3.11"
|
||||||
name: dependency checks / python${{ matrix.python-version }}
|
name: dependency checks ${{ matrix.python-version }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
2
.github/workflows/_lint.yml
vendored
2
.github/workflows/_lint.yml
vendored
@ -21,7 +21,7 @@ env:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: python${{ matrix.python-version }}
|
name: "make lint #${{ matrix.python-version }}"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
|
2
.github/workflows/_test.yml
vendored
2
.github/workflows/_test.yml
vendored
@ -28,7 +28,7 @@ jobs:
|
|||||||
- "3.9"
|
- "3.9"
|
||||||
- "3.10"
|
- "3.10"
|
||||||
- "3.11"
|
- "3.11"
|
||||||
name: python${{ matrix.python-version }}
|
name: "make test #${{ matrix.python-version }}"
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
2
.github/workflows/doc_lint.yml
vendored
2
.github/workflows/doc_lint.yml
vendored
@ -29,7 +29,7 @@ jobs:
|
|||||||
git grep 'from langchain import' {docs/docs,templates,cookbook} | grep -vE 'from langchain import (hub)' && exit 1 || exit 0
|
git grep 'from langchain import' {docs/docs,templates,cookbook} | grep -vE 'from langchain import (hub)' && exit 1 || exit 0
|
||||||
|
|
||||||
lint:
|
lint:
|
||||||
name: make lint
|
name: "-"
|
||||||
uses:
|
uses:
|
||||||
./.github/workflows/_lint.yml
|
./.github/workflows/_lint.yml
|
||||||
with:
|
with:
|
||||||
|
Loading…
Reference in New Issue
Block a user