Skip to content

Merge branch 'main' of https://github.com/AdrienHdz/AI_assistant_chat… #4

Merge branch 'main' of https://github.com/AdrienHdz/AI_assistant_chat…

Merge branch 'main' of https://github.com/AdrienHdz/AI_assistant_chat… #4

Workflow file for this run

name: CI
on:
push:
paths-ignore:
- '**/README.md'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install dependencies
run:
make install
working-directory: backend/avatar_assistant_api
- name: Lint with Ruff
run:
make lint
working-directory: backend/avatar_assistant_api
- name: Format code with Python black
run:
make format
working-directory: backend/avatar_assistant_api