Skip to content

Initial public OSS package for Rensheng Mima #2

Initial public OSS package for Rensheng Mima

Initial public OSS package for Rensheng Mima #2

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: python -m pip install --upgrade pip
- run: pip install -r requirements.txt
- run: python -B scripts/ziweiwenmotests.py
- run: python -B scripts/xiashensuantests.py
- run: python -B scripts/ziwei_patterns_tests.py
- run: python -B scripts/wenmo_text_scan.py --record-dir private_records
frontend:
runs-on: ubuntu-latest
defaults:
run:
working-directory: web/frontend
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22"
cache: npm
cache-dependency-path: web/frontend/package-lock.json
- run: npm ci
- run: npm run build