|
12 | 12 | - "samples/**"
|
13 | 13 |
|
14 | 14 | jobs:
|
15 |
| - python-lint: |
16 |
| - runs-on: ubuntu-latest |
17 |
| - steps: |
18 |
| - - name: Checkout code |
19 |
| - uses: actions/checkout@v4 |
| 15 | + # python-lint: |
| 16 | + # runs-on: ubuntu-latest |
| 17 | + # steps: |
| 18 | + # - name: Checkout code |
| 19 | + # uses: actions/checkout@v4 |
20 | 20 |
|
21 |
| - - name: Get list of changed files |
22 |
| - id: changed |
23 |
| - run: | |
24 |
| - files=$(git diff --name-only origin/${{ github.base_ref }}...${{ github.head_ref }} | grep '\.py$' || true) |
25 |
| - echo "files=$files" >> "$GITHUB_OUTPUT" |
| 21 | + # - name: Get list of changed files |
| 22 | + # id: changed |
| 23 | + # run: | |
| 24 | + # files=$(git diff --name-only origin/${{ github.base_ref }}...${{ github.head_ref }} | grep '\.py$' || true) |
| 25 | + # echo "files=$files" >> "$GITHUB_OUTPUT" |
26 | 26 |
|
27 |
| - - name: Run Ruff linter |
28 |
| - uses: astral-sh/ruff-action@v1 |
29 |
| - with: |
30 |
| - args: check |
31 |
| - src: ${{ steps.changed.outputs.files }} |
| 27 | + # - name: Run Ruff linter |
| 28 | + # uses: astral-sh/ruff-action@v1 |
| 29 | + # with: |
| 30 | + # args: check |
| 31 | + # src: ${{ steps.changed.outputs.files }} |
32 | 32 |
|
33 |
| - - name: Run Ruff formatter check |
34 |
| - uses: astral-sh/ruff-action@v1 |
35 |
| - with: |
36 |
| - args: "format --check" |
37 |
| - src: ${{ steps.changed.outputs.files }} |
| 33 | + # - name: Run Ruff formatter check |
| 34 | + # uses: astral-sh/ruff-action@v1 |
| 35 | + # with: |
| 36 | + # args: "format --check" |
| 37 | + # src: ${{ steps.changed.outputs.files }} |
38 | 38 |
|
39 | 39 | js-ts-lint:
|
40 | 40 | runs-on: ubuntu-latest
|
@@ -69,27 +69,28 @@ jobs:
|
69 | 69 | echo "No JS/TS files to format check."
|
70 | 70 | fi
|
71 | 71 |
|
72 |
| - go-lint: |
73 |
| - runs-on: ubuntu-latest |
74 |
| - steps: |
75 |
| - - name: Checkout code |
76 |
| - uses: actions/checkout@v4 |
| 72 | + # go-lint: |
| 73 | + # runs-on: ubuntu-latest |
| 74 | + # steps: |
| 75 | + # - name: Checkout code |
| 76 | + # uses: actions/checkout@v4 |
77 | 77 |
|
78 |
| - - name: Set up Golang |
79 |
| - uses: actions/setup-go@v5 |
80 |
| - with: |
81 |
| - go-version: stable |
| 78 | + # - name: Set up Golang |
| 79 | + # uses: actions/setup-go@v5 |
| 80 | + # with: |
| 81 | + # go-version: stable |
82 | 82 |
|
83 |
| - - name: Run golangci-lint |
84 |
| - uses: golangci/golangci-lint-action@v8 |
85 |
| - with: |
86 |
| - args: --enable gofmt --enable goimports |
87 |
| - only-new-issues: true |
88 |
| - version: latest |
| 83 | + # - name: Run golangci-lint |
| 84 | + # uses: golangci/golangci-lint-action@v8 |
| 85 | + # with: |
| 86 | + # args: --enable gofmt --enable goimports |
| 87 | + # only-new-issues: true |
| 88 | + # version: latest |
89 | 89 |
|
90 | 90 | build-json:
|
91 | 91 | runs-on: ubuntu-latest
|
92 |
| - needs: [python-lint, js-ts-lint, go-lint] |
| 92 | + # needs: [python-lint, js-ts-lint, go-lint] |
| 93 | + needs: [js-ts-lint] |
93 | 94 | steps:
|
94 | 95 | - name: Trigger CLI Autodoc
|
95 | 96 | uses: peter-evans/repository-dispatch@v1
|
|
0 commit comments