Skip to content

docs: Week 5 PR notes in week-issues/week5.md; dashboard, embedding-s… #33

docs: Week 5 PR notes in week-issues/week5.md; dashboard, embedding-s…

docs: Week 5 PR notes in week-issues/week5.md; dashboard, embedding-s… #33

Workflow file for this run

name: CI
on:
pull_request:
push:
jobs:
test-and-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install Poetry
run: pip install poetry
- name: Install dependencies
run: poetry install --no-interaction --no-root
- name: Run Ruff
run: poetry run ruff check .
- name: Run tests
run: poetry run pytest