diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 19b076333..44e13edb8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -68,6 +68,9 @@ jobs: - build - test-pypi-publish runs-on: ubuntu-latest + defaults: + run: + working-directory: ./langgraph steps: - uses: actions/checkout@v4 @@ -122,7 +125,7 @@ jobs: poetry run python -c "import $IMPORT_NAME; print(dir($IMPORT_NAME))" - name: Import test dependencies - run: poetry install --with test,test_integration + run: poetry install --with test # Overwrite the local version of the package with the test PyPI version. - name: Import published package (again) @@ -151,7 +154,6 @@ jobs: # Trusted publishing has to also be configured on PyPI for each package: # https://docs.pypi.org/trusted-publishers/adding-a-publisher/ id-token: write - defaults: run: working-directory: ./langgraph @@ -189,7 +191,6 @@ jobs: # This permission is needed by `ncipollo/release-action` to # create the GitHub release. contents: write - defaults: run: working-directory: ./langgraph diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2eac17272..09a97d514 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,7 +21,6 @@ jobs: - "3.9" - "3.10" - "3.11" - - "3.12" name: Python ${{ matrix.python-version }} steps: - uses: actions/checkout@v4