Skip to content

Code formatting, flake8 fixes and pylint fixes #12

Code formatting, flake8 fixes and pylint fixes

Code formatting, flake8 fixes and pylint fixes #12

name: Generate Composio SDK Wheels
on:
pull_request:
types: [opened, synchronize]
jobs:
build-wheels:
runs-on: ubuntu-latest
strategy:
matrix:
folder: ['autogen', 'core', 'crew_ai', 'langchain', 'lyzr']
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install build
run: python -m pip install build
- name: Build wheel
run: |
cd ${{ matrix.folder }}
python -m build
cd ..
- name: Upload Wheels
uses: actions/upload-artifact@v3
with:
name: python-package-${{ matrix.folder }}
path: ${{ matrix.folder }}/dist/*.whl