Skip to content

[Doc] add Paddle 静态图并行编排与执行流程 #301

[Doc] add Paddle 静态图并行编排与执行流程

[Doc] add Paddle 静态图并行编排与执行流程 #301

Workflow file for this run

name: Lint and Format
on:
push:
branches: [main]
pull_request:
merge_group:
workflow_dispatch:
jobs:
lint-and-fmt:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: true
- name: Install pnpm
uses: pnpm/action-setup@v2
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'pnpm'
- name: Install dependencies
run: pnpm i --frozen-lockfile
- name: Format check
run: |
pnpm fmt:check