chore(deps): bump langchain-community from 0.3.26 to 0.3.27 in /crew-ai #59
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Crew AI CI | |
on: | |
push: | |
paths: | |
- .github/workflows/crew-ai.yaml | |
- crew-ai/** | |
branches: | |
- main | |
pull_request: | |
paths: | |
- .github/workflows/crew-ai.yaml | |
- crew-ai/** | |
permissions: | |
contents: read | |
jobs: | |
check: | |
name: Format, Lint and Type Check | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: crew-ai | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install poetry | |
run: pipx install poetry | |
- name: Install dependencies | |
run: poetry install --with dev | |
- name: Check format | |
run: poetry run ruff format --check | |
- name: Check lint | |
run: poetry run ruff check | |
- name: Check types | |
run: poetry run pyright | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: crew-ai | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Docker Compose | |
uses: ./.github/actions/setup-compose | |
- name: Build Docker images | |
run: docker compose build |