github.com/matrixorigin/matrixone@v0.7.0/.github/workflows/lint_docs.yml (about)

     1  name: Lint Docs
     2  
     3  on:
     4    pull_request:
     5      types: [ opened, synchronize, reopened ]
     6      branches: [main]
     7      paths:
     8        - 'docs/cn/**'
     9        - 'docs/en/**'
    10    workflow_dispatch:
    11  
    12  jobs:
    13    lint-docs:
    14      name: Lint Docs
    15      runs-on: ubuntu-latest
    16      steps:
    17      - name: Check out code
    18        uses: actions/checkout@v3
    19  
    20      - name: Lint docs
    21        uses: docker://avtodev/markdown-lint:v1 # fastest way
    22        with:
    23          config: './.markdownlint.yaml'
    24          args: './docs/cn ./docs/en'
    25  
    26    tae-sca:
    27      # The type of runner that the job will run on.
    28      runs-on: ubuntu-latest
    29      name: SCA Test on CentOS/x64
    30      steps:
    31        - run: 'echo "No build required" '
    32  
    33    tae-ut:
    34      # The type of runner that the job will run on.
    35      runs-on: ubuntu-latest
    36      name: UT Test on CentOS/x64
    37      steps:
    38        - run: 'echo "No build required" '
    39  
    40    tae-bvt:
    41      # The type of runner that the job will run on.
    42      runs-on: ubuntu-latest
    43      name: BVT Test on CentOS/x64
    44      steps:
    45        - run: 'echo "No build required" '