Browse Source

add reviewdog token to enable checkstyle (#10819)

3.1.0-release
xiangzihao 2 years ago committed by GitHub
parent
commit
5083e0be6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      .github/workflows/api-test.yml
  2. 2
      .github/workflows/e2e.yml
  3. 2
      .github/workflows/py-ci.yml
  4. 2
      .github/workflows/unit-test.yml

2
.github/workflows/api-test.yml

@ -54,6 +54,8 @@ jobs:
submodules: true
- name: Sanity Check
uses: ./.github/actions/sanity-check
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Cache local Maven repository
uses: actions/cache@v3
with:

2
.github/workflows/e2e.yml

@ -54,6 +54,8 @@ jobs:
submodules: true
- name: Sanity Check
uses: ./.github/actions/sanity-check
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Cache local Maven repository
uses: actions/cache@v3
with:

2
.github/workflows/py-ci.yml

@ -126,6 +126,8 @@ jobs:
submodules: true
- name: Sanity Check
uses: ./.github/actions/sanity-check
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Cache local Maven repository
uses: actions/cache@v3
with:

2
.github/workflows/unit-test.yml

@ -63,6 +63,8 @@ jobs:
submodules: true
- name: Sanity Check
uses: ./.github/actions/sanity-check
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v2
with:

Loading…
Cancel
Save