Skip to content

feat: polish crewAI demo #7

feat: polish crewAI demo

feat: polish crewAI demo #7

Workflow file for this run

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