We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08fa5c4 commit 7a88342Copy full SHA for 7a88342
.github/workflows/build-and-test.yml
@@ -130,10 +130,14 @@ jobs:
130
poetry install
131
working-directory: ${{ matrix.packages.path }}
132
133
- - name: Install beta dependency
+ - name: Install core dependency
134
if: matrix.packages.name == 'microsoft_agents_m365copilot_beta'
135
run: |
136
- python -m pip install microsoft_agents_m365copilot_core
+ pushd ../microsoft_agents_m365copilot_core
137
+ poetry build -f wheel
138
+ popd
139
+ # install wheel into the beta poetry venv used by later steps
140
+ poetry run pip install ../microsoft_agents_m365copilot_core/dist/*.whl
141
142
143
# Core package specific steps
0 commit comments