Skip to content

Move stemming utils to more appropriate place #158

Move stemming utils to more appropriate place

Move stemming utils to more appropriate place #158

Workflow file for this run

name: testing
on: [push]
jobs:
backend-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
- run: cd backend && pip install -r requirements.dev.txt
- run: python3 -m nltk.downloader punkt_tab
- run: cd backend && pytest
- run: cd backend && ruff check .
frontend-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- run: npm install -g pnpm
- run: pnpm install -C ./frontend
- run: pnpm run -C ./frontend test