Skip to content

Commit 8135577

Browse files
committed
fix ci
1 parent b94c9f7 commit 8135577

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,16 @@ jobs:
2828
- name: Install poetry
2929
uses: abatilo/actions-poetry@7b6d33e44b4f08d7021a1dee3c044e9c253d6439
3030

31-
- uses: ./.github/actions/build
31+
- name: Build core package
32+
uses: ./.github/actions/build
33+
with:
34+
package-path: packages/core
35+
36+
- name: Build langchain package
37+
uses: ./.github/actions/build
38+
with:
39+
package-path: packages/langchain
40+
3241
- uses: ./.github/actions/build-docs
3342

3443
- name: Run tests
@@ -58,8 +67,8 @@ jobs:
5867
- name: Install poetry
5968
uses: abatilo/actions-poetry@7b6d33e44b4f08d7021a1dee3c044e9c253d6439
6069

61-
- name: Install requirements
62-
run: poetry install
70+
- name: Install packages
71+
run: make install
6372

6473
- name: Run tests
6574
run: make test

0 commit comments

Comments
 (0)