Skip to content

Commit 00ab86d

Browse files
committed
dev: try to restore the check step
1 parent ba013ae commit 00ab86d

File tree

1 file changed

+14
-15
lines changed

1 file changed

+14
-15
lines changed

.github/workflows/pr-checks.yml

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -27,22 +27,21 @@ jobs:
2727
git diff --exit-code go.mod
2828
git diff --exit-code go.sum
2929
30-
# This check is disabled because of GitHub API instability: 504 Gateway Timeout.
3130
# Checks: GitHub action assets
32-
# check-generated:
33-
# runs-on: ubuntu-latest
34-
# steps:
35-
# - uses: actions/checkout@v4
36-
# with:
37-
# fetch-depth: 0
38-
# - uses: actions/setup-go@v5
39-
# with:
40-
# go-version: ${{ env.GO_VERSION }}
41-
# - name: Check generated files are up-to-date
42-
# run: make fast_check_generated
43-
# env:
44-
# # needed for github-action-config.json generation
45-
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
31+
check-generated:
32+
runs-on: ubuntu-latest
33+
steps:
34+
- uses: actions/checkout@v4
35+
with:
36+
fetch-depth: 0
37+
- uses: actions/setup-go@v5
38+
with:
39+
go-version: ${{ env.GO_VERSION }}
40+
- name: Check generated files are up-to-date
41+
run: make fast_check_generated
42+
env:
43+
# needed for github-action-config.json generation
44+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4645

4746
check-local-install-script:
4847
name: Installation script (local)

0 commit comments

Comments
 (0)