infra: ci naming 2 (#16893)

This commit is contained in:
Erick Friis 2024-02-01 11:39:00 -08:00 committed by GitHub
parent b1e7130d8a
commit 13a6756067
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 10 additions and 10 deletions

View File

@ -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:

View File

@ -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

View File

@ -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

View File

@ -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:

View File

@ -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

View File

@ -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: