diff --git a/.github/workflows/_all_ci.yml b/.github/workflows/_all_ci.yml index 61caad6ebd2..f6b27f029d1 100644 --- a/.github/workflows/_all_ci.yml +++ b/.github/workflows/_all_ci.yml @@ -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: diff --git a/.github/workflows/_compile_integration_test.yml b/.github/workflows/_compile_integration_test.yml index 750ce00a77f..d8b5b9b0aa4 100644 --- a/.github/workflows/_compile_integration_test.yml +++ b/.github/workflows/_compile_integration_test.yml @@ -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 diff --git a/.github/workflows/_dependencies.yml b/.github/workflows/_dependencies.yml index 4c460479693..dd12a25c05c 100644 --- a/.github/workflows/_dependencies.yml +++ b/.github/workflows/_dependencies.yml @@ -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 diff --git a/.github/workflows/_lint.yml b/.github/workflows/_lint.yml index a6e12761d97..a0c1944a325 100644 --- a/.github/workflows/_lint.yml +++ b/.github/workflows/_lint.yml @@ -21,7 +21,7 @@ env: jobs: build: - name: python${{ matrix.python-version }} + name: "make lint #${{ matrix.python-version }}" runs-on: ubuntu-latest strategy: matrix: diff --git a/.github/workflows/_test.yml b/.github/workflows/_test.yml index d2552d3ecc0..928cab763ee 100644 --- a/.github/workflows/_test.yml +++ b/.github/workflows/_test.yml @@ -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 diff --git a/.github/workflows/doc_lint.yml b/.github/workflows/doc_lint.yml index b1d1932672f..298e1509b01 100644 --- a/.github/workflows/doc_lint.yml +++ b/.github/workflows/doc_lint.yml @@ -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: