infra: ci naming 2 (#16893)

pull/15369/head^2
Erick Friis 4 months ago committed by GitHub
parent b1e7130d8a
commit 13a6756067
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -36,35 +36,35 @@ env:
jobs:
lint:
name: make lint
name: "-"
uses: ./.github/workflows/_lint.yml
with:
working-directory: ${{ inputs.working-directory }}
secrets: inherit
test:
name: make test
name: "-"
uses: ./.github/workflows/_test.yml
with:
working-directory: ${{ inputs.working-directory }}
secrets: inherit
compile-integration-tests:
name: poetry run pytest -m compile tests/integration_tests
name: "-"
uses: ./.github/workflows/_compile_integration_test.yml
with:
working-directory: ${{ inputs.working-directory }}
secrets: inherit
dependencies:
name: check dependencies
name: "-"
uses: ./.github/workflows/_dependencies.yml
with:
working-directory: ${{ inputs.working-directory }}
secrets: inherit
extended-tests:
name: make extended_tests / python${{ matrix.python-version }}
name: "make extended_tests #${{ matrix.python-version }}"
runs-on: ubuntu-latest
strategy:
matrix:

@ -24,7 +24,7 @@ jobs:
- "3.9"
- "3.10"
- "3.11"
name: python${{ matrix.python-version }}
name: "poetry run pytest -m compile tests/integration_tests #${{ matrix.python-version }}"
steps:
- uses: actions/checkout@v4

@ -28,7 +28,7 @@ jobs:
- "3.9"
- "3.10"
- "3.11"
name: dependency checks / python${{ matrix.python-version }}
name: dependency checks ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4

@ -21,7 +21,7 @@ env:
jobs:
build:
name: python${{ matrix.python-version }}
name: "make lint #${{ matrix.python-version }}"
runs-on: ubuntu-latest
strategy:
matrix:

@ -28,7 +28,7 @@ jobs:
- "3.9"
- "3.10"
- "3.11"
name: python${{ matrix.python-version }}
name: "make test #${{ matrix.python-version }}"
steps:
- uses: actions/checkout@v4

@ -29,7 +29,7 @@ jobs:
git grep 'from langchain import' {docs/docs,templates,cookbook} | grep -vE 'from langchain import (hub)' && exit 1 || exit 0
lint:
name: make lint
name: "-"
uses:
./.github/workflows/_lint.yml
with:

Loading…
Cancel
Save