Skip to content

Phase 0: Add Next.js frontend with live search, word of day and AI cards #19

Phase 0: Add Next.js frontend with live search, word of day and AI cards

Phase 0: Add Next.js frontend with live search, word of day and AI cards #19

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
name: Python tests
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: pip
- name: Install dependencies
run: python -m pip install -r requirements.txt
- name: Run checks
run: make check