Skip to content

Use lipsum to generate bigger text file for test #79

Use lipsum to generate bigger text file for test

Use lipsum to generate bigger text file for test #79

Workflow file for this run

name: PR checks
on:
pull_request:
types: [opened, reopened, synchronize]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.BRANCH }}
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: gradle
cache-dependency-path: backend/build.gradle.kts
- name: Run Java backend tests
run: ./gradlew test
working-directory: backend
- name: Build with Gradle
run: ./gradlew build
working-directory: backend
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 9
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
cache-dependency-path: ui/pnpm-lock.yaml
- name: Install UI Dependencies
run: pnpm install --no-frozen-lockfile
working-directory: ui
- name: Lint with PNPM
run: pnpm lint
working-directory: ui
- name: Run frontend tests
run: pnpm test
working-directory: ui
- name: Build with PNPM
run: pnpm build
working-directory: ui
- name: Set up Python
uses: pdm-project/setup-pdm@v3
with:
python-version: '3.10'
cache: false
- name: Cache pdm cache folder
uses: actions/cache@v4
id: python_cache
with:
path: ./llm-service/.venv
key: pdm-venv-${{ hashFiles('./llm-service/pdm.lock') }}
- name: Install Python dependencies
if: steps.python_cache.outputs.cache-hit != 'true'
run: |
pdm install
working-directory: llm-service
- name: Run ruff
run: |
pdm run ruff check app
working-directory: llm-service
- name: Run mypy
run: |
pdm run mypy app
working-directory: llm-service
- name: Test with pytest
run: |
pdm run pytest -sxvvra
working-directory: llm-service