Skip to content

feat(server): add scanning & watch API for routes #3

feat(server): add scanning & watch API for routes

feat(server): add scanning & watch API for routes #3

Workflow file for this run

name: build
on:
pull_request:
branches:
- "main"
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.12.7"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Install Spacy Language Model
run: |
python -m spacy download en_core_web_sm
python -m spacy download zh_core_web_sm
- name: Run unit tests
run: python test.py