Skip to content

feat: add mgr.load for ModelScope studio repo #101

feat: add mgr.load for ModelScope studio repo

feat: add mgr.load for ModelScope studio repo #101

Workflow file for this run

name: Lint Test
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- name: Checkout Code Repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Install Python Dependencies
run: pip install flake8 isort yapf
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install Pnpm
run: npm i pnpm@latest -g
- name: Install Node Dependencies
run: pnpm install
- name: Build Dependencies
run: pnpm run build:compiled
- name: Run Lint
run: pnpm run lint